123456789101112131415161718192021222324 |
- package com.emato.ccnet.wx.config;
- import com.emato.ccnet.wx.aop.AspectWebLog;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- /**
- * @author Scott Chen
- * @version 1.0
- * 2017-10-23 02:27
- */
- @Configuration
- public class AspectWebConfiguration {
- /**
- * 日志处理
- * @return
- */
- @Bean
- public static AspectWebLog webLogAspect() {
- return new AspectWebLog();
- }
- }
|