Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mannabom-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-mail' // 이메일 SMTP

// JWT 토큰 처리
implementation 'io.jsonwebtoken:jjwt-api:0.12.3'
implementation 'io.jsonwebtoken:jjwt-api:0.12.6'
implementation 'io.jsonwebtoken:jjwt-impl:0.12.6'
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.3'
implementation 'io.jsonwebtoken:jjwt-jackson:0.12.6'
Comment thread
Sehi55 marked this conversation as resolved.

// 파일 업로드 처리 (로컬 개발용)
implementation 'commons-io:commons-io:2.14.0'
Expand Down
6 changes: 4 additions & 2 deletions mannabom-server/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ spring:
jpa:
hibernate:
ddl-auto: validate # update 사용 (배포용)
default_batch_fetch_size: 100
show-sql: false # SQL 로그 비활성화 (배포용)
properties:
hibernate:
default_batch_fetch_size: 100

flyway:
enabled: true
Expand Down Expand Up @@ -92,7 +94,7 @@ server:

meeting:
cursor:
secret: ${MEETING_SECRET_KEY:local-dev-key-do-not-user-in-prod}
secret: ${MEETING_SECRET_KEY}
match:
scheduler:
initial-delay: 1800000
Expand Down
4 changes: 2 additions & 2 deletions mannabom-server/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ spring:
jpa:
hibernate:
ddl-auto: validate # create(DB테스트용), update(개발용), validate(운영용)
default_batch_fetch_size: 100
properties:
hibernate.hibernate.use_sql_comments: true
hibernate:
format_sql: true
use_sql_comments: true
default_batch_fetch_size: 100
show-sql: false # SQL 쿼리 로그 출력 (개발용)


Expand Down