상황
새 프로젝트를 진행하면서 Jpa와 MySQL을 연동하는 중 다음과 같은 경고가 떴다.
WARN 8604 --- [ main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
해결
SpringBoot는 기본적으로 spring.jpa.open-in-view이 true로 설정되어 있고, 랜더링 중에 database 쿼리가 실행될 수 있다고 한다. 그러므로 application.yml 파일에서 false로 바꿔주는 것이 좋다.
jpa:
open-in-view: false
'Today I Learned > Daily Log' 카테고리의 다른 글
[DailyLog] package org.springframework.beans.factory.annotation does not exixt (4) | 2024.02.15 |
---|---|
[DailyLog] Windows Hello 지문과 호환되는 지문 스캐너를 찾을 수 없습니다. (38) | 2023.10.24 |
[DailyLog] A problem occurred configuring root project 'hello-spring'. (0) | 2022.12.15 |
[DailyLog] Postman Status: 401 Unauthorized (0) | 2022.10.27 |
댓글