What transaction manager to use? (JPA, Spring)

前端 未结 3 525
有刺的猬
有刺的猬 2020-12-29 05:44

I\'m developing a web application based on JPA + Hibernate, Spring and Wicket. I was wondering what\'s the best way of implementing transactions in my code? What transaction

3条回答
  •  旧时难觅i
    2020-12-29 06:10

    nanda is right, you can only use JpaTransactionManager. The Transaction Manager abstraction we are talking about here is Spring's PlatformTransactionManager interface, and JPATransactionManager is the only implementation of that interface that understands JPA.

    You should read the chapter Transaction Management from the Spring reference to better understand this topic.

提交回复
热议问题