generated from pricelees/issue-pr-template
<!-- 제목 양식 --> <!-- [이슈번호] 작업 요약 (예시: [#10] Gitea 템플릿 생성) --> ## 📝 관련 이슈 및 PR **PR과 관련된 이슈 번호** - #70 ## ✨ 작업 내용 <!-- 어떤 작업을 했는지 알려주세요! --> - Spring Cache + Caffeine 도입 - 테마 조회 및 수정 / 삭제 로직에 캐시 적용 ## 🧪 테스트 <!-- 어떤 테스트를 생각했고 진행했는지 알려주세요! --> - P95 응답 시간 약 14% 개선 - Hikari Pool Connection & Tomcat Threads에서의 개선 ## 📚 참고 자료 및 기타 <!-- 참고한 자료, 또는 논의할 사항이 있다면 알려주세요! --> Reviewed-on: #71 Co-authored-by: pricelees <priceelees@gmail.com> Co-committed-by: pricelees <priceelees@gmail.com>
58 lines
1.7 KiB
Plaintext
58 lines
1.7 KiB
Plaintext
plugins {
|
|
id("org.springframework.boot")
|
|
kotlin("plugin.spring")
|
|
kotlin("plugin.jpa")
|
|
}
|
|
|
|
dependencies {
|
|
// API docs
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.13")
|
|
|
|
// Cache
|
|
implementation("org.springframework.boot:spring-boot-starter-cache")
|
|
implementation("com.github.ben-manes.caffeine:caffeine")
|
|
|
|
// DB
|
|
runtimeOnly("com.h2database:h2")
|
|
runtimeOnly("com.mysql:mysql-connector-j")
|
|
|
|
// Jwt
|
|
implementation("io.jsonwebtoken:jjwt:0.12.6")
|
|
|
|
// Logging
|
|
implementation("net.logstash.logback:logstash-logback-encoder:8.1")
|
|
implementation("com.github.loki4j:loki-logback-appender:2.0.0")
|
|
|
|
// Observability
|
|
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
|
implementation("io.micrometer:micrometer-tracing-bridge-otel")
|
|
implementation("io.opentelemetry:opentelemetry-exporter-otlp")
|
|
runtimeOnly("io.micrometer:micrometer-registry-prometheus")
|
|
|
|
// Kotlin
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
// Test
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("io.mockk:mockk:1.14.4")
|
|
testImplementation("com.ninja-squad:springmockk:4.0.2")
|
|
|
|
// Kotest
|
|
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0")
|
|
|
|
// RestAssured
|
|
testImplementation("io.rest-assured:rest-assured:5.5.5")
|
|
testImplementation("io.rest-assured:kotlin-extensions:5.5.5")
|
|
|
|
// etc
|
|
implementation("org.apache.poi:poi-ooxml:5.2.3")
|
|
|
|
// submodules
|
|
implementation(project(":common:persistence"))
|
|
implementation(project(":common:web"))
|
|
}
|
|
|
|
tasks.named<Jar>("jar") {
|
|
enabled = false
|
|
}
|