Content Service Kafka 의존성 제거

- 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>
This commit is contained in:
cherry2250
2025-10-27 11:50:19 +09:00
parent f7159465ac
commit c82dbc6572
4 changed files with 0 additions and 26 deletions
-3
View File
@@ -5,9 +5,6 @@ configurations {
}
dependencies {
// Kafka Consumer
implementation 'org.springframework.kafka:spring-kafka'
// Redis for AI data reading and image URL caching
implementation 'org.springframework.boot:spring-boot-starter-data-redis'