2022-11-04 09:51:58 +00:00
|
|
|
tomcat.ajp.protocol=AJP/1.3
|
|
|
|
|
|
|
|
|
|
#file upload
|
|
|
|
|
spring.servlet.multipart.location=/uploadFiles
|
|
|
|
|
spring.servlet.multipart.max-file-size=200MB
|
|
|
|
|
spring.servlet.multipart.max-request-size=500MB
|
|
|
|
|
|
|
|
|
|
#thymeleaf
|
|
|
|
|
spring.thymeleaf.prefix=classpath:templates/
|
|
|
|
|
spring.thymeleaf.check-template-location=true
|
|
|
|
|
spring.thymeleaf.suffix=.html
|
|
|
|
|
spring.thymeleaf.mode=HTML
|
|
|
|
|
|
|
|
|
|
#Datasource Configuration
|
|
|
|
|
spring.sql.init.encoding=utf-8
|
|
|
|
|
#maximum-pool-size: CPU core count
|
|
|
|
|
spring.datasource.hikari.maximum-pool-size=4
|
|
|
|
|
#postgresql
|
|
|
|
|
spring.datasource-main.driverClassName=org.postgresql.Driver
|
2022-12-05 07:11:35 +00:00
|
|
|
spring.datasource-main.url=jdbc:postgresql://10.187.142.13:5432/experdb
|
|
|
|
|
spring.datasource-main.username=experdb
|
|
|
|
|
spring.datasource-main.password=Ground453!@
|
|
|
|
|
#tibero
|
|
|
|
|
spring.datasource-kwms.driverClassName=com.tmax.tibero.jdbc.TbDriver
|
|
|
|
|
spring.datasource-kwms.jdbcUrl=jdbc:tibero:thin:@10.29.2.199:8629:tibero
|
|
|
|
|
spring.datasource-kwms.username=smartonek_hrms
|
|
|
|
|
spring.datasource-kwms.password=SmartOneK5715
|
2022-11-04 09:51:58 +00:00
|
|
|
|
|
|
|
|
#jpa
|
|
|
|
|
spring.jpa.show-sql=false
|
|
|
|
|
spring.jpa.generate-ddl=false
|
|
|
|
|
spring.jpa.hibernate.naming.physical-strategy = org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
|
|
|
|
|
|
|
|
|
|
# MyBatis
|
|
|
|
|
mybatis.mapper-locations: mybatisMapper/*.xml
|
|
|
|
|
mybatis.configuration.map-underscore-to-camel-case=true
|
|
|
|
|
mybatis.type-aliases-package=com.dbnt.faisp.main.**.model
|
|
|
|
|
logging.level.com.atoz_develop.mybatissample.repository=TRACE
|