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