Skip to content

Commit

Permalink
优化
Browse files Browse the repository at this point in the history
  • Loading branch information
shuaje committed May 20, 2018
1 parent 5228bce commit c44d888
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion iBase4J-Biz-Service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ server:
spring:
# 环境 dev|test|prod
profiles:
active: dev
active: ${spring.profiles.active}
# jackson时间格式化
jackson:
time-zone: GMT+8
Expand Down
2 changes: 1 addition & 1 deletion iBase4J-Biz-Web/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ server:
spring:
# 环境 dev|test|prod
profiles:
active: dev
active: ${spring.profiles.active}
# jackson时间格式化
jackson:
time-zone: GMT+8
Expand Down
34 changes: 17 additions & 17 deletions iBase4J-SYS-Service/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Tomcat
server:
name: iBase4J-SYS-Service
port: 8085
tomcat:
max-threads: 1000
min-spare-threads: 30
# mysql
spring:
# 环境 dev|test|prod
profiles:
active: dev
# jackson时间格式化
jackson:
time-zone: GMT+8
date-format: yyyy-MM-dd HH:mm:ss
thymeleaf:
# Tomcat
server:
name: iBase4J-SYS-Service
port: 8085
tomcat:
max-threads: 1000
min-spare-threads: 30
# mysql
spring:
# 环境 dev|test|prod
profiles:
active: ${spring.profiles.active}
# jackson时间格式化
jackson:
time-zone: GMT+8
date-format: yyyy-MM-dd HH:mm:ss
thymeleaf:
cache: false
2 changes: 1 addition & 1 deletion iBase4J-SYS-Web/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ server:
spring:
# 环境 dev|test|prod
profiles:
active: dev
active: ${spring.profiles.active}
# jackson时间格式化
jackson:
time-zone: GMT+8
Expand Down

0 comments on commit c44d888

Please sign in to comment.