@@ -51,7 +51,7 @@ logging:
level:
com.ruoyi: @logging.level@
org.springframework: warn
- config: classpath:logback.xml
+ config: classpath:logback-plus.xml
# 用户配置
user:
@@ -6,6 +6,9 @@ spring:
profiles:
active: @profiles.active@
+logging:
+
--- # 监控中心服务端配置
spring:
security:
@@ -16,6 +16,9 @@ spring:
resources:
static-locations: classpath:/static/
--- # mybatis 配置
mybatis:
mapper-locations: classpath:/mybatis-mapper/*Mapper.xml
@@ -73,7 +73,7 @@ public class CreateAndUpdateMetaObjectHandler implements MetaObjectHandler {
log.warn("自动注入警告 => 用户未登录");
return null;
}
- return loginUser.getUsername();
+ return ObjectUtil.isNotNull(loginUser) ? loginUser.getUsername() : null;