51 lines
1.9 KiB
Properties
51 lines
1.9 KiB
Properties
|
|
spring.application.name=admin
|
||
|
|
|
||
|
|
#Server port
|
||
|
|
server.port = 8080
|
||
|
|
|
||
|
|
# JDBC properties
|
||
|
|
spring.datasource.url=jdbc:mysql://61.28.226.9:3306/gone
|
||
|
|
spring.datasource.username=geuser1
|
||
|
|
spring.datasource.password=Dki@2023
|
||
|
|
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
||
|
|
|
||
|
|
#spring.security.user.name=admin
|
||
|
|
#spring.security.user.password=password
|
||
|
|
# Logging
|
||
|
|
logging.level.org.springframework.security=TRACE
|
||
|
|
logging.level.org.springframework.web=TRACE
|
||
|
|
logging.level.org.hibernate.SQL=TRACE
|
||
|
|
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
|
||
|
|
|
||
|
|
# MyBatis configuration
|
||
|
|
mybatis.mapper-locations=classpath:mapper/*.xml
|
||
|
|
mybatis.configuration.map-underscore-to-camel-case=true
|
||
|
|
mybatis.configuration.default-fetch-size=100
|
||
|
|
mybatis.configuration.default-statement-timeout=30
|
||
|
|
# MyBatis Configuration
|
||
|
|
mybatis.configuration.cache-enabled=true
|
||
|
|
mybatis.configuration.lazy-loading-enabled=true
|
||
|
|
mybatis.configuration.aggressive-lazy-loading=true
|
||
|
|
mybatis.configuration.multiple-result-sets-enabled=true
|
||
|
|
mybatis.configuration.use-column-label=true
|
||
|
|
mybatis.configuration.use-generated-keys=false
|
||
|
|
mybatis.configuration.auto-mapping-behavior=PARTIAL
|
||
|
|
mybatis.configuration.auto-mapping-unknown-column-behavior=NONE
|
||
|
|
mybatis.configuration.default-executor-type=SIMPLE
|
||
|
|
mybatis.configuration.safe-row-bounds-enabled=false
|
||
|
|
mybatis.configuration.safe-result-handler-enabled=true
|
||
|
|
mybatis.configuration.local-cache-scope=SESSION
|
||
|
|
mybatis.configuration.jdbc-type-for-null=OTHER
|
||
|
|
mybatis.configuration.lazy-load-trigger-methods=equals,clone,hashCode,toString
|
||
|
|
mybatis.configuration.default-enum-type-handler=org.apache.ibatis.type.EnumTypeHandler
|
||
|
|
mybatis.configuration.call-setters-on-nulls=false
|
||
|
|
mybatis.configuration.return-instance-for-empty-row=false
|
||
|
|
mybatis.configuration.log-prefix=exampleLogPreFix_
|
||
|
|
|
||
|
|
spring.servlet.multipart.max-file-size=20MB
|
||
|
|
spring.servlet.multipart.max-request-size=20MB
|
||
|
|
|
||
|
|
#Schedule config
|
||
|
|
scheduler.enabled=true
|
||
|
|
|