raycon / til

Today I Learned
MIT License
16 stars 3 forks source link

Hibernate 쿼리 로그 #15

Open raycon opened 3 years ago

raycon commented 3 years ago
# logs the SQL statements
logging.level.org.hibernate.SQL=DEBUG
# Logs the JDBC parameters passed to a query
logging.level.org.hibernate.type=TRACE
raycon commented 3 years ago

JdbcTemplate 로그

logging.level.org.springframework.jdbc.core.JdbcTemplate=DEBUG
logging.level.org.springframework.jdbc.core.StatementCreatorUtils=TRACE
raycon commented 3 years ago

쿼리를 보기 좋게 출력하려면

spring.jpa.properties.hibernate.format_sql=true