xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
提交 | 用户 | 时间
722af2 1 package com.dl.framework.config;
X 2
3 import org.springframework.context.annotation.Configuration;
4 import org.springframework.context.annotation.EnableAspectJAutoProxy;
5
6 /**
7  * 程序注解配置
8  *
9  * @author Lion Li
10  */
11 @Configuration
12 // 表示通过aop框架暴露该代理对象,AopContext能够访问
13 @EnableAspectJAutoProxy(exposeProxy = true)
14 public class ApplicationConfig {
15
16 }