mirror of https://github.com/halo-dev/halo
🐛 fixed #114
parent
735f5363f4
commit
06df6fa93c
4
pom.xml
4
pom.xml
|
@ -33,7 +33,6 @@
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
<oh-my-email.version>0.0.4</oh-my-email.version>
|
<oh-my-email.version>0.0.4</oh-my-email.version>
|
||||||
<lombok.version>1.18.4</lombok.version>
|
<lombok.version>1.18.4</lombok.version>
|
||||||
<ehcache.version>3.6.3</ehcache.version>
|
|
||||||
<hutool.version>4.5.0</hutool.version>
|
<hutool.version>4.5.0</hutool.version>
|
||||||
<upyun-java-sdk.version>4.0.1</upyun-java-sdk.version>
|
<upyun-java-sdk.version>4.0.1</upyun-java-sdk.version>
|
||||||
<qiniu-java-sdk.version>7.2.18</qiniu-java-sdk.version>
|
<qiniu-java-sdk.version>7.2.18</qiniu-java-sdk.version>
|
||||||
|
@ -121,9 +120,8 @@
|
||||||
|
|
||||||
<!-- EhCache -->
|
<!-- EhCache -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ehcache</groupId>
|
<groupId>net.sf.ehcache</groupId>
|
||||||
<artifactId>ehcache</artifactId>
|
<artifactId>ehcache</artifactId>
|
||||||
<version>${ehcache.version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- hutool工具包 -->
|
<!-- hutool工具包 -->
|
||||||
|
|
|
@ -10,8 +10,6 @@ server:
|
||||||
session:
|
session:
|
||||||
timeout: 86400s
|
timeout: 86400s
|
||||||
spring:
|
spring:
|
||||||
cache:
|
|
||||||
type: none
|
|
||||||
output:
|
output:
|
||||||
ansi:
|
ansi:
|
||||||
enabled: always
|
enabled: always
|
||||||
|
@ -60,6 +58,11 @@ spring:
|
||||||
# 多语言资源文件路径
|
# 多语言资源文件路径
|
||||||
messages:
|
messages:
|
||||||
basename: i18n/messages
|
basename: i18n/messages
|
||||||
|
|
||||||
|
cache:
|
||||||
|
type: ehcache
|
||||||
|
ehcache:
|
||||||
|
config: classpath:ehcache.xml
|
||||||
logging:
|
logging:
|
||||||
level:
|
level:
|
||||||
cc.ryanc.halo: DEBUG
|
cc.ryanc.halo: DEBUG
|
||||||
|
|
|
@ -60,6 +60,11 @@ spring:
|
||||||
# 多语言资源文件路径
|
# 多语言资源文件路径
|
||||||
messages:
|
messages:
|
||||||
basename: i18n/messages
|
basename: i18n/messages
|
||||||
|
|
||||||
|
cache:
|
||||||
|
type: ehcache
|
||||||
|
ehcache:
|
||||||
|
config: classpath:ehcache.xml
|
||||||
logging:
|
logging:
|
||||||
level:
|
level:
|
||||||
cc.ryanc.halo: INFO
|
cc.ryanc.halo: INFO
|
||||||
|
|
Loading…
Reference in New Issue