DEBUG [qtp12189822-41] OpenSessionInViewFilter.doFilterInternal(181) | Opening single Hibernate Session in OpenSessionInViewFilter
DEBUG [qtp12189822-41] MpcFilterSecurityInterceptor.beforeInvocation(184) | Public object - authentication not attempted
DEBUG [qtp12189822-41] OpenSessionInViewFilter.doFilterInternal(207) | Closing single Hibernate Session in OpenSessionInViewFilter
如果不了解hibernate的話,這幾句話就沒法解釋了。但還是給你說一下:OpenSessionInViewFilter這個類是spring為了保證hibernate的session能夠在頁面請求返回時依然保持open狀態,這樣才能夠讀取到諸如子類數據、lazy=true的數據等等。當頁面請求完成之後這個類才會關閉hibernate的session。而這幾句話就是hibernate的session從開到關的過程。