mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-19 20:55:14 +09:00
버그 수정
This commit is contained in:
17
build.gradle
17
build.gradle
@@ -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'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user