cherry2250 06995864b9 Content Service API 테스트 구현 추가
- REST API Controller 구현 (이미지 생성, Job 조회, 콘텐츠 조회 등)
- Gateway 어댑터 구현 (ContentGateway, JobGateway)
- Mock Gateway 구현 (Redis, CDN, AI 이미지 생성기)
- Mock UseCase 구현 (실제 이미지 생성 시뮬레이션)
- Security 및 Swagger 설정 추가
- 로컬 테스트를 위한 H2 데이터베이스 설정 (application-local.yml)
- 비동기 처리를 위한 @EnableAsync 설정

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-23 21:30:21 +09:00

24 lines
861 B
Groovy

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'
// 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'
// H2 Database for local testing
runtimeOnly 'com.h2database:h2'
}