| #######################################springboot配置 start################################# |
| # 单库数据库配置 |
| spring.jpa.show-sql=true |
| spring.datasource.hikari.connection-timeout=60000 |
| spring.datasource.hikari.maximum-pool-size=5 |
| spring.jpa.hibernate.ddl-auto=update |
| # logging |
| logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n |
| logging.level.org.hibernate.SQL=debug |
| #################### JSP PAGE #################### |
| #spring.mvc.view.prefix=/pages/ |
| #spring.mvc.view.suffix=.jsp |
| #################### thymeleaf #################### |
| spring.mvc.static-path-pattern=/static/** |
| spring.thymeleaf.prefix=classpath:/templates/ |
| spring.thymeleaf.suffix=.html |
| spring.thymeleaf.encoding=UTF-8 |
| spring.thymeleaf.mode=HTML5 |
| spring.thymeleaf.cache=false |
| spring.thymeleaf.enabled=true |