LLog
是基于AOP
构建的请求日志记录和查询工具库,通过引入该工具库,完成配置,实现对接口请求日志的记录、查询检索等功能。
在引入任何 Lucy
系列依赖之前,需要完成jitpack
镜像仓库的配置。
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://www.jitpack.io</url>
</repository>
</repositories>
在pom
中引入,版本号与发行版本一致。
<dependency>
<groupId>com.gitee.lboot</groupId>
<artifactId>LLog</artifactId>
<version>0.0.8</version>
</dependency>
LLog
日志管理页面访问,默认仅支持 127.0.0.1
的请求来源访问(即支持本地访问),如果需要支持更多的访问来源,需要配置放行IP
列表,通过,
分隔。
# 日志请求白名单
llog.ip.allows=127.0.0.1,198.0.0.1
LLog
基于lucy-jpa
构建数据库访问,需要完成对应数据库配置。
# MySQL
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/demo?allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=Asia/Shanghai
spring.datasource.username=demo
spring.datasource.password=
# JPA 允许结构替换
spring.main.allow-bean-definition-overriding=true
# 最小空闲连接数量
spring.datasource.hikari.minimum-idle=5
# 最长生命周期
spring.datasource.hikari.max-lifetime=120000
# 空闲连接存活最大时间,默认600000(10分钟)
spring.datasource.hikari.idle-timeout=50000
# 连接池最大连接数,默认是10
spring.datasource.hikari.maximum-pool-size=20
# 此属性控制从池返回的连接的默认自动提交行为,默认值:true
spring.datasource.hikari.auto-commit=true
# 连接测试查询
spring.datasource.hikari.connection-test-query=SELECT 1
# jpa 配置
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=false
spring.jpa.database=MYSQL
#自动将驼峰命名转换为小写和下划线 userId -> user_id
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
#不加这句则默认为myisam引擎
spring.jpa.database-platform= org.hibernate.dialect.MySQL5InnoDBDialect
LLog
会记录用户ID和请求IP。如果需要获取到用户ID,则需要完成对鉴权服务的配置,拓展实现AuthService
中的isLogin
和getUid
接口,或者直接引入lucy-rbac
等实现方案。
推荐自定义实现
@Slf4j
@Service
@AllArgsConstructor
public class DemoAuthServiceImpl implements AuthService {
@Override
public Boolean isLogin() {
// return StpUtil.isLogin(); // 使用 SaToken
return AuthService.super.isLogin();
}
@Override
public String getUid() {
// return StpUtil.getLoginIdAsString(); // 使用 SaToken
return null;
}
}
通过自定义注解标记需要记录请求日志的接口,实现对接口请求的自动记录。
@ApiLog("追踪测试")
@GetMapping("trace")
@ApiOperation(value = "追踪ID测试")
public ResponseDTO<Object> testTrace(){
//
}
@ApiLog
注解可配置项如下:
参数 | 类型 | 备注 |
---|---|---|
value | string | 默认为请求所属模块名词 |
module | string | value 别名 |
ignoreResponse | int | 记录数据是否忽略响应结果,1为是,0为否 |
ignoreRequest | int | 记录数据是否忽略请求参数,1为是,0为否 |
通过访问项目部署地址,进入日志查看管理页面。
http://localhost:8080/dashboard.html
支持多种条件的日志检索方式。
鼠标悬浮即可查看
条件组合查询
例如此处就是状态
+接口方法
组合查询,支持全部条件的组合。
关键词匹配检索
请求来源和请求参数都支持模糊查询匹配,支持条件查询与模糊查询组合使用
0.0.8
lucy-spring-boot-starter
版本依赖