- 创建操作日志插件模块,实现可插拔式日志记录功能 - 添加@EnableOperLog注解实现插件自动配置 - 添加@OperLog注解支持方法级别的操作日志记录 - 实现AOP切面处理,自动拦截并记录操作信息 - 配置异步日志记录服务,提升系统性能 - 更新插件父模块POM配置,纳入构建管理
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>org.leocoder.thin</groupId>
|
||
<artifactId>coder-common-thin-plugins</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<name>coder-common-thin-oper-logs</name>
|
||
<artifactId>coder-common-thin-oper-logs</artifactId>
|
||
<description>异步操作日志功能插件;支持AOP切面自动记录操作日志</description>
|
||
|
||
<dependencies>
|
||
<!-- 全局公共模块 -->
|
||
<dependency>
|
||
<groupId>org.leocoder.thin</groupId>
|
||
<artifactId>coder-common-thin-common</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<!-- 模型模块 -->
|
||
<dependency>
|
||
<groupId>org.leocoder.thin</groupId>
|
||
<artifactId>coder-common-thin-model</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<!-- SpringBoot Aop 依赖 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-aop</artifactId>
|
||
</dependency>
|
||
<!-- Redis 依赖 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |