类 OperationLogAutoConfigure
- java.lang.Object
-
- cn.bbwres.biscuit.operation.log.OperationLogAutoConfigure
-
@AutoConfiguration @EnableConfigurationProperties(OperationLogProperties.class) public class OperationLogAutoConfigure extends Object
操作日志自动注入类- 作者:
- zhanglinfeng
-
-
嵌套类概要
嵌套类 修饰符和类型 类 说明 protected static classOperationLogAutoConfigure.SaveEnhanceOperationLogConfiguration当有操作日志保存实现包时注入protected static classOperationLogAutoConfigure.WebEnhanceOperationLogConfiguration当包含webmvc包时注入
-
构造器概要
构造器 构造器 说明 OperationLogAutoConfigure()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 EnhanceOperationLogServiceenhanceOperationLogBaseService(org.springframework.core.env.Environment environment)操作日志基本的属性设置服务EnhanceOperationLogServiceenhanceOperationLogParamsService()操作日志请求参数设置服务EnhanceOperationLogServiceenhanceOperationLogSpringElService()操作日志spel 表达式信息EnhanceOperationLogServiceenhanceOperationLogUserService(OperationLogProperties operationLogProperties)操作日志用户信息补充参数OperationLogAspectoperationLogAspect(List<EnhanceOperationLogService> enhanceOperationLogServices)切面配置
-
-
-
方法详细资料
-
operationLogAspect
@Bean public OperationLogAspect operationLogAspect(List<EnhanceOperationLogService> enhanceOperationLogServices)
切面配置- 返回:
- OperationLogAspect
-
enhanceOperationLogBaseService
@Bean @Order(1) public EnhanceOperationLogService enhanceOperationLogBaseService(org.springframework.core.env.Environment environment)
操作日志基本的属性设置服务- 参数:
environment- 当前环境变量- 返回:
- enhanceOperationLogBaseService
-
enhanceOperationLogParamsService
@Bean @Order(100) public EnhanceOperationLogService enhanceOperationLogParamsService()
操作日志请求参数设置服务- 返回:
- enhanceOperationLogParamsService
-
enhanceOperationLogSpringElService
@Bean("enhanceOperationLogSpringElService") @Order(300) public EnhanceOperationLogService enhanceOperationLogSpringElService()操作日志spel 表达式信息- 返回:
- enhanceOperationLogSpringElService
-
enhanceOperationLogUserService
@Bean @Order(200) public EnhanceOperationLogService enhanceOperationLogUserService(OperationLogProperties operationLogProperties)
操作日志用户信息补充参数- 返回:
- enhanceOperationLogParamsService
-
-