3225470df5
Revert "BAEL-3275: Using blocking queue for pub-sub"
19 lines
494 B
Java
19 lines
494 B
Java
package com.baeldung.spring;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.ImportResource;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
@ImportResource("classpath:webMvcConfig.xml")
|
|
@Configuration
|
|
@ComponentScan
|
|
public class ClientWebConfig implements WebMvcConfigurer {
|
|
|
|
public ClientWebConfig() {
|
|
super();
|
|
}
|
|
|
|
// API
|
|
|
|
} |