41b7eba619
- 로그인 추가
31 lines
640 B
YAML
31 lines
640 B
YAML
server:
|
|
port: 8106
|
|
forward-headers-strategy: framework
|
|
|
|
spring:
|
|
application:
|
|
name: api
|
|
|
|
mybatis:
|
|
mapper-locations: classpath:mapper/**/*.xml
|
|
type-aliases-package: com.alist.api
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
|
|
|
|
springdoc:
|
|
swagger-ui:
|
|
path: /swagger-ui.html
|
|
tags-sorter: alpha # 태그 알파벳 순 정렬
|
|
operations-sorter: alpha # API 알파벳 순 정렬
|
|
api-docs:
|
|
path: /v3/api-docs
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: health,info,metrics
|
|
endpoint:
|
|
health:
|
|
show-details: always |