kcgFileManager/src/main/resources/application.properties

24 lines
795 B
Properties
Raw Normal View History

2021-11-30 10:05:43 +00:00
spring.devtools.livereload.enabled=true
2021-11-24 09:27:36 +00:00
2021-11-30 10:05:43 +00:00
#thymeleaf
spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.check-template-location=true
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.cache=false
2021-11-19 08:47:02 +00:00
2021-11-30 10:05:43 +00:00
#mariaDB
2021-11-19 08:47:02 +00:00
spring.datasource.driverClassName=net.sf.log4jdbc.sql.jdbcapi.DriverSpy
spring.datasource.url=jdbc:log4jdbc:mariadb://106.247.244.146:57306/kcg_fm?characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=dbnt0928
2021-11-30 10:05:43 +00:00
#jpa
spring.jpa.show-sql=true
spring.jpa.generate-ddl=false
# MyBatis
mybatis.mapper-locations: mybatisMapper/**/*.xml
mybatis.configuration.map-underscore-to-camel-case=true
mybatis.type-aliases-package=com.dbnt.kcgfilemanager.model
logging.level.com.atoz_develop.mybatissample.repository=TRACE