application.yaml 테스트 설정 spring: jpa: database-platform: org.hibernate.dialect.MySQL5Dialect generate-ddl: true show-sql: true properties: hibernate: dialect: org.hibernate.dialect.MySQLDialect cache: use_query_cache: true # Query Cache 테스트를 위한 설정 use_minimal_puts: true # 2nd level cache 테스트를 위한 Hazelcast 설정 use_second_level_cache: true region.factory_class: com.hazelcast.hibernate.HazelcastLocal..