| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- server:
- port: 4030
- tomcat:
- max-http-form-post-size: 4MB
- # servlet:
- # session:
- # org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getSessionTimeoutInMinutes 获取超时时间
- # 两个请求间隔的最大时间, 超过此时间则会话过期
- # timeout: 7d
- # persistent: true
- # cookie:
- # secure: true
- # http-only: true
- spring:
- servlet:
- multipart:
- max-request-size: 1GB
- max-file-size: 1GB
- application:
- name: devopsmgr
- profiles:
- active: @profile.active@
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- session:
- timeout: 7d
- store-type: jdbc
- jdbc:
- initialize-schema: never
- table-name: SYS_SPRING_SESSION
- 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.dialect: org.hibernate.dialect.MySQLDialect
- hibernate.format_sql: true
- hibernate.show_sql: false
- hibernate.cache.use_second_level_cache: false
- freemarker:
- cache: true
- template-loader-path:
- - classpath:/templates
- check-template-location: true
- request-context-attribute: request
- charset: utf-8
- suffix: .ftl
- settings:
- classic_compatible: true #处理空值
- template_exception_handler: rethrow
- template_update_delay: 0
- datetime_format: yyyy-MM-dd HH:mm
- number_format: 0.##
- auto_import: /utils.ftl as utils
- management:
- endpoints:
- web:
- base-path: /api/actuator
- exposure:
- include: "*"
- metrics:
- tags:
- application: ${spring.application.name}
- logging:
- level:
- org: OFF
|