버그 수정

This commit is contained in:
2025-10-04 03:35:52 +09:00
parent fa63330e69
commit bb98b0d721
10 changed files with 64 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.2'
id 'org.springframework.boot' version '3.5.6'
id 'io.spring.dependency-management' version '1.1.6'
}
@@ -19,6 +19,19 @@ configurations {
}
}
// ✅ Spring Boot 실행 시 JVM 옵션
bootRun {
jvmArgs = [
'-Xms32g',
'-Xmx32g',
'-XX:+UseZGC',
'-XX:+ZGenerational',
'-XX:MaxMetaspaceSize=512m',
'-XX:+ZUncommit',
'-XX:ZUncommitDelay=300'
]
}
repositories {
mavenCentral()
}
@@ -37,6 +50,8 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-reactor-netty'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent
implementation 'org.springframework.boot:spring-boot-starter-parent:3.5.6'
implementation 'org.springframework.retry:spring-retry:2.0.8'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'