Files
spring-boot-rest/spring-rest-full/src/test/java/org/baeldung/spring/ConfigTest.java
Doha2012 1c9477390d move query language to new module (#2864)
* 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
2017-10-25 18:39:04 +02:00

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
}