인텔리제이 springboot 오류모음

스프링부트 서버 실행 후 아래와같은 에러가 발생한다.

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는 기본적으로 활성화되어 있습니다. 따라서 뷰 렌더링 중에 데이터베이스 쿼리가 수행될 수 있습니다. 이 경고를 비활성화하려면 명시적으로 spring.jpa.open-in-view를 구성하십시오.

참고사이트: https://stackoverflow.com/questions/30549489/what-is-this-spring-jpa-open-in-view-true-property-in-spring-boot

해결방안

  • application.properties 파일에서 아래내용 선언해주면된다.
spring.jpa.open-in-view=false

좋은 웹페이지 즐겨찾기