12 lines
348 B
Java
12 lines
348 B
Java
package com.baeldung;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
|
|
@Configuration
|
|
@ComponentScan(basePackages = { "com.baeldung.pointcutadvice" })
|
|
@EnableAspectJAutoProxy
|
|
public class TestConfig {
|
|
}
|