java - What is this property in Spring Boot? spring.jpa.open-in-view=true -
i saw in spring boot documentation property jpa configuration spring.jpa.open-in-view=true. way, set true, default value?
what mean? did not find explaining behaviour.
should use hibernate sessionfactory instead entitymanagerfactory? if yes, how can set entitymanagerfactory?
appreciate help.
thanks!
this property register openentitymanagerinviewinterceptor, registers entitymanager current thread, have same entitymanager until web request finished. has nothing hibernate sessionfactory etc.
Comments
Post a Comment