| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- server:
- port: 4020
- servlet:
- session:
- timeout: 86400
- spring:
- application:
- name: autodop-master
- profiles:
- active: @profile.active@
- banner:
- location: classpath:banner.txt
- servlet:
- multipart:
- max-file-size: 1GB
- max-request-size: 1GB
- # cache:
- # cache-names: buildDeployApp
- 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: true
- open-in-view: true
- hibernate:
- ddl-auto: update
- properties:
- hibernate:
- hbm2ddl:
- auto: update
- dialect: org.hibernate.dialect.MySQL57Dialect
- mvc:
- favicon:
- enabled: true
- dispatch-options-request: true
- thymeleaf:
- prefix: classpath:/templates
- suffix: .html
- mode: HTML
- encoding: utf-8
- servlet:
- content-type: text/html
- cache: false
- oss:
- endpoint: http://oss-cn-hangzhou.aliyuncs.com
- key: jYk8lOKwSCorFEz7
- secret: hzSrcew08V5zk58kVVgInV7OqbHyVc
- bucket: iquizoo
- folder: eval3.x/alpha/eval_exercises/
|