From 0a7697094d2739e7abfee61cb6ca3ea27de7209b Mon Sep 17 00:00:00 2001 From: rahon6000 center Date: Thu, 26 Oct 2023 17:45:07 +0900 Subject: [PATCH] update posting --- _posts/2023-10-25-SpringBootStarter.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_posts/2023-10-25-SpringBootStarter.md b/_posts/2023-10-25-SpringBootStarter.md index 390bf6ad7b86..04997145069a 100644 --- a/_posts/2023-10-25-SpringBootStarter.md +++ b/_posts/2023-10-25-SpringBootStarter.md @@ -60,10 +60,12 @@ spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/db_name spring.datasource.username=KoreanArmy spring.datasource.password=1Q2W3E4R spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver -spring.jpa.show-sql:true # false 로 둬도 되는데, 개발중엔 true 로 둡니다. # 로그 설정 logging.level.root=debug # console 에 출력되는 로그 수준 설정... +spring.output.ansi.enabled=always # 로그가 예뻐집니다 +spring.jpa.properties.hibernate.show_sql=true # false 로 둬도 되는데, 개발중엔 true 로 둡니다. +spring.jpa.properties.hibernate.format_sql=true # sql 로그가 에뻐집니다. # 타임리프 캐싱 설정 (수정시 반영하기 위함) spring.thymeleaf.cache=false