* move security content from spring-security-rest-full * swagger update * move query language to new module * rename spring-security-rest-full to spring-rest-full
17 lines
408 B
Java
17 lines
408 B
Java
package org.baeldung.spring;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
|
|
@Configuration
|
|
@ComponentScan("org.baeldung.test")
|
|
public class ConfigTest extends WebMvcConfigurerAdapter {
|
|
|
|
public ConfigTest() {
|
|
super();
|
|
}
|
|
|
|
// API
|
|
|
|
} |