Spring 3.2 + Hibernate 4 OpenSessionInViewFilter

前端 未结 2 1287
夕颜
夕颜 2021-02-03 13:57

I\'m a Spring newbie trying my first app. My hibernate gets closed before the view is rendered and having problems with lazy loaded properties (expected behavior). I\'ve added

2条回答
  •  攒了一身酷
    2021-02-03 14:40

    To solve the problem in my case it was just missing this line

    in the application-context file.

    The @Transactional annotation over a method was not taken into account.

    Hope it will help someone

提交回复
热议问题