ÎļþÃû´Ó ruoyi-framework/src/main/java/com/ruoyi/framework/config/ApplicationConfig.java ÐÞ¸Ä |
| | |
| | | package com.ruoyi.framework.config; |
| | | package com.ruoyi.common.core.config; |
| | | |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.boot.autoconfigure.AutoConfiguration; |
| | | import org.springframework.context.annotation.EnableAspectJAutoProxy; |
| | | |
| | | /** |
| | |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Configuration |
| | | @AutoConfiguration |
| | | // 表示éè¿aopæ¡æ¶æ´é²è¯¥ä»£ç对象,AopContextè½å¤è®¿é® |
| | | @EnableAspectJAutoProxy(exposeProxy = true) |
| | | public class ApplicationConfig { |