17 lines
419 B
Java
17 lines
419 B
Java
package com.baeldung.spring;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
@Configuration
|
|
@ComponentScan("com.baeldung.test")
|
|
public class ConfigIntegrationTest implements WebMvcConfigurer {
|
|
|
|
public ConfigIntegrationTest() {
|
|
super();
|
|
}
|
|
|
|
// API
|
|
|
|
} |