| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- server:
- port: 4020
- servlet:
- session:
- timeout: 86400
- spring:
- servlet:
- multipart:
- max-file-size: 1GB
- max-request-size: 1GB
- application:
- name: autodop-master
- profiles:
- active: @profile.active@
- banner:
- location: classpath:banner.txt
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- type: com.zaxxer.hikari.HikariDataSource
- hikari:
- minimum-idle: 5
- maximum-pool-size: 10
- auto-commit: true
- idle-timeout: 30000
- pool-name: EvaluationHikariCP
- max-lifetime: 1800000
- connection-timeout: 30000
- connection-test-query: SELECT 1
- jpa:
- show-sql: false
- open-in-view: true
- hibernate:
- ddl-auto: update
- properties:
- hibernate:
- hbm2ddl:
- auto: update
- dialect: org.hibernate.dialect.MySQL57Dialect
- mvc:
- dispatch-options-request: true
- thymeleaf:
- prefix: classpath:/templates
- suffix: .html
- mode: HTML
- encoding: utf-8
- servlet:
- content-type: text/html
- cache: false
|