Files
java-tutorials/spring-mvc-java/src/test/java/com/baeldung/config/TestConfig.java
T

12 lines
387 B
Java
Raw Normal View History

2019-10-26 15:37:05 -06:00
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 {
}