qiaowei | f7ef143 | 2019-04-15 17:52:42 +0800 | [diff] [blame] | 1 | #######################################springboot配置 start################################# |
| 2 | # 单库数据库配置 |
qiaowei | f7ef143 | 2019-04-15 17:52:42 +0800 | [diff] [blame] | 3 | spring.jpa.show-sql=true |
| 4 | spring.datasource.hikari.connection-timeout=60000 |
| 5 | spring.datasource.hikari.maximum-pool-size=5 |
| 6 | spring.jpa.hibernate.ddl-auto=update |
| 7 | # logging |
| 8 | logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n |
| 9 | logging.level.org.hibernate.SQL=debug |
| 10 | #################### JSP PAGE #################### |
Xia Kaixiang | 2d3a1ce | 2019-04-16 17:58:56 +0800 | [diff] [blame] | 11 | #spring.mvc.view.prefix=/pages/ |
| 12 | #spring.mvc.view.suffix=.jsp |
| 13 | #################### thymeleaf #################### |
| 14 | spring.mvc.static-path-pattern=/static/** |
| 15 | spring.thymeleaf.prefix=classpath:/templates/ |
| 16 | spring.thymeleaf.suffix=.html |
| 17 | spring.thymeleaf.encoding=UTF-8 |
| 18 | spring.thymeleaf.mode=HTML5 |
Xia Kaixiang | 72373d8 | 2019-04-18 13:52:36 +0800 | [diff] [blame] | 19 | spring.thymeleaf.cache=false |
| 20 | spring.thymeleaf.enabled=true |