Compare commits

...

7 Commits

5 changed files with 10 additions and 4 deletions

View File

@ -2,7 +2,8 @@
<configuration debug="true" scan="false" scanPeriod="30 seconds">
<!--定义日志文件的存储地址 -->
<Property name="logDir" value="./logs" />
<springProperty name="LOG_PATH" source="log.path" defaultValue="./logs" />
<Property name="logDir" value="${LOG_PATH}" />
<Property name="splitSize" value="50MB" />
<!-- 控制台日志, 控制台输出 -->

View File

@ -2,7 +2,8 @@
<configuration debug="true" scan="false" scanPeriod="30 seconds">
<!--定义日志文件的存储地址 -->
<Property name="logDir" value="./logs" />
<springProperty name="LOG_PATH" source="log.path" defaultValue="./logs" />
<Property name="logDir" value="${LOG_PATH}" />
<Property name="splitSize" value="50MB" />
<!-- 控制台日志, 控制台输出 -->

View File

@ -2,7 +2,8 @@
<configuration debug="true" scan="false" scanPeriod="30 seconds">
<!--定义日志文件的存储地址 -->
<Property name="logDir" value="./logs"/>
<springProperty name="LOG_PATH" source="log.path" defaultValue="./logs" />
<Property name="logDir" value="${LOG_PATH}" />
<Property name="splitSize" value="50MB"/>
<!-- 控制台日志, 控制台输出 -->

View File

@ -2,7 +2,8 @@
<configuration debug="true" scan="false" scanPeriod="30 seconds">
<!--定义日志文件的存储地址 -->
<Property name="logDir" value="./logs" />
<springProperty name="LOG_PATH" source="log.path" defaultValue="./logs" />
<Property name="logDir" value="${LOG_PATH}" />
<Property name="splitSize" value="50MB" />
<!-- 控制台日志, 控制台输出 -->

View File

@ -191,6 +191,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>11</source>
<target>11</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>