Spring Boot에 mySQL을 연결하여 작동하니
다음과 같은 오류가 발생했다.
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
spring:
jpa:
open-in-view: false
로그 오류 문제로 application.yaml 파일에
다음과 같이 추가해주니 오류가 해결됐다.