2021-11-24 09:27:36 +00:00
|
|
|
|
2021-12-28 04:56:12 +00:00
|
|
|
#file upload size
|
2021-12-15 07:07:35 +00:00
|
|
|
spring.servlet.multipart.max-file-size=20MB
|
|
|
|
|
spring.servlet.multipart.max-request-size=100MB
|
|
|
|
|
|
2021-11-30 10:05:43 +00:00
|
|
|
#thymeleaf
|
|
|
|
|
spring.thymeleaf.prefix=classpath:templates/
|
|
|
|
|
spring.thymeleaf.check-template-location=true
|
|
|
|
|
spring.thymeleaf.suffix=.html
|
2021-12-09 09:23:19 +00:00
|
|
|
spring.thymeleaf.mode=HTML
|
2021-11-19 08:47:02 +00:00
|
|
|
|
2021-11-30 10:05:43 +00:00
|
|
|
#mariaDB
|
2021-12-28 02:58:33 +00:00
|
|
|
spring.datasource.driverClassName=org.mariadb.jdbc.Driver
|
2021-12-28 07:22:44 +00:00
|
|
|
spring.datasource.url=jdbc:mariadb://localhost:3306/kcgFileManager?characterEncoding=UTF-8&serverTimezone=UTC
|
2021-11-19 08:47:02 +00:00
|
|
|
spring.datasource.username=root
|
2021-12-28 04:56:12 +00:00
|
|
|
spring.datasource.password=kcg211228
|
2021-11-30 10:05:43 +00:00
|
|
|
|
|
|
|
|
#jpa
|
|
|
|
|
spring.jpa.generate-ddl=false
|
2021-12-07 10:08:49 +00:00
|
|
|
spring.jpa.hibernate.naming.physical-strategy = org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
|
2021-11-30 10:05:43 +00:00
|
|
|
|
|
|
|
|
# MyBatis
|
|
|
|
|
mybatis.mapper-locations: mybatisMapper/**/*.xml
|
|
|
|
|
mybatis.configuration.map-underscore-to-camel-case=true
|
2021-12-28 07:22:44 +00:00
|
|
|
mybatis.type-aliases-package=com.dbnt.kcgfilemanager.model
|