mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 09:26:24 +00:00
- build.gradle에서 spring-kafka 의존성 삭제 - application*.yml에서 Kafka 설정 제거 - content-service는 Redis에 데이터를 저장하는 역할만 수행 - 서비스 간 비동기 통신이 필요 없어 Kafka 불필요 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
987 B
Groovy
24 lines
987 B
Groovy
configurations {
|
|
// Exclude JPA and PostgreSQL from inherited dependencies (Phase 3: Redis migration)
|
|
implementation.exclude group: 'org.springframework.boot', module: 'spring-boot-starter-data-jpa'
|
|
implementation.exclude group: 'org.postgresql', module: 'postgresql'
|
|
}
|
|
|
|
dependencies {
|
|
// Redis for AI data reading and image URL caching
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
|
|
// OpenFeign for Stable Diffusion/DALL-E API
|
|
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
|
|
|
|
// Azure Blob Storage for CDN
|
|
implementation "com.azure:azure-storage-blob:${azureStorageVersion}"
|
|
|
|
// Resilience4j for Circuit Breaker
|
|
implementation "io.github.resilience4j:resilience4j-spring-boot3:${resilience4jVersion}"
|
|
implementation "io.github.resilience4j:resilience4j-circuitbreaker:${resilience4jVersion}"
|
|
|
|
// Jackson for JSON
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
}
|