설정 추가

dev
박성영 5 months ago
parent 3408b56c32
commit 7790d80a9f

1
.gitignore vendored

@ -30,3 +30,4 @@ replay_pid*
/.idea/
/.gradle/
/.idea/
/.fastRequest/

@ -137,6 +137,7 @@ dependencies {
// ===== Mail =====
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// ===== =====
// Lombok - (Getter, Setter, Builder )

@ -70,21 +70,11 @@ springdoc:
tags-sorter: alpha
display-request-duration: true
doc-expansion: none
filter: true
supportedSubmitMethods: [get, post]
cookie-auth-enabled: true # Swagger UI에서 세션 쿠키 인증 활성화 (springdoc 2.x)
use-cookie-auth: true # Swagger UI에서 인증 시 쿠키 사용 (springdoc 2.x)
init:
oauth2:
enabled: false
usePkceWithAuthorizationCodeGrant: false
packages-to-scan: go.kr.project
paths-to-match: /**
default-consumes-media-type: application/json
default-produces-media-type: application/json
model-converters:
pageable-converter:
enabled: true
# Login configuration
login:
@ -143,3 +133,12 @@ interceptor:
- /common/** #공통 페이지
- /swagger-ui/** #Swagger UI
- /v3/api-docs/** #Swagger API 문서
management:
endpoints:
web:
exposure:
include: health, info, metrics
metrics:
enable:
hikari: true
Loading…
Cancel
Save