spring: # JPA 설정 jpa: hibernate: ddl-auto: create-drop show-sql: true properties: hibernate: format_sql: true dialect: org.hibernate.dialect.H2Dialect # H2 인메모리 데이터베이스 설정 datasource: url: jdbc:h2:mem:testdb driver-class-name: org.h2.Driver username: sa password: # Kafka 자동설정 비활성화 (통합 테스트에서는 불필요) autoconfigure: exclude: - org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration # H2 콘솔 활성화 (디버깅용) h2: console: enabled: true path: /h2-console # 로깅 레벨 logging: level: org.hibernate.SQL: DEBUG org.hibernate.type.descriptor.sql.BasicBinder: TRACE com.kt.event.participation: DEBUG