Files
spring-boot-rest/spring-mvc-java/src/test/java/com/baeldung/config/TestConfig.java
David Morley 9630170b03 Rename package
2016-04-07 06:17:57 -05:00

12 lines
387 B
Java

package com.baeldung.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
@Configuration
@ComponentScan(basePackages = { "com.baeldung.dao", "com.baeldung.aop", "com.baeldung.events" })
@EnableAspectJAutoProxy
public class TestConfig {
}