- RedisConfig.java: Production용 Redis 설정 추가 - RedisGateway.java: Redis 읽기/쓰기 Gateway 구현 - application-local.yml: Redis/Kafka auto-configuration 제외 설정 - test-backend.md: 7개 API 테스트 결과서 작성 (100% 성공) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
spring:
|
|
datasource:
|
|
url: jdbc:h2:mem:contentdb
|
|
username: sa
|
|
password:
|
|
driver-class-name: org.h2.Driver
|
|
|
|
h2:
|
|
console:
|
|
enabled: true
|
|
path: /h2-console
|
|
|
|
jpa:
|
|
database-platform: org.hibernate.dialect.H2Dialect
|
|
hibernate:
|
|
ddl-auto: create-drop
|
|
show-sql: true
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
dialect: org.hibernate.dialect.H2Dialect
|
|
|
|
data:
|
|
redis:
|
|
# Redis 연결 비활성화 (Mock 사용)
|
|
repositories:
|
|
enabled: false
|
|
host: localhost
|
|
port: 6379
|
|
|
|
kafka:
|
|
# Kafka 연결 비활성화 (Mock 사용)
|
|
bootstrap-servers: localhost:9092
|
|
consumer:
|
|
enabled: false
|
|
|
|
autoconfigure:
|
|
exclude:
|
|
- org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
|
|
- org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration
|
|
- org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration
|
|
|
|
server:
|
|
port: 8084
|
|
|
|
logging:
|
|
level:
|
|
com.kt.event: DEBUG
|
|
org.hibernate.SQL: DEBUG
|
|
org.hibernate.type.descriptor.sql.BasicBinder: TRACE
|