admin
2021-01-19 8f1b5245c592cd6dc5eb5a73f9a0ceb2a85f2048
1
2
3
4
5
6
7
8
9
10
11
12
package com.ks.lucky.config;
 
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
 
@Configuration
@ComponentScan("com.ks.lucky.aspect")
@EnableAspectJAutoProxy
public class AopConfig {
 
}