33 lines
613 B
YAML
33 lines
613 B
YAML
server:
|
|
port: 2000
|
|
shutdown: graceful
|
|
undertow:
|
|
no-request-timeout: 60000
|
|
|
|
spring:
|
|
lifecycle:
|
|
timeout-per-shutdown-phase: 30s
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
profiles:
|
|
active: @profiles.active@
|
|
group:
|
|
local: web-framework,openfeign,mybatis-plus
|
|
dev: web-framework,openfeign,mybatis-plus
|
|
prod: web-framework,openfeign,mybatis-plus
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: "*"
|
|
endpoint:
|
|
shutdown:
|
|
enabled: false
|
|
info:
|
|
enabled: true
|
|
health:
|
|
show-details: always
|
|
|
|
|