Is persistence.xml requied when working with Spring and Hibernate?

前端 未结 3 2034
清酒与你
清酒与你 2020-12-04 18:21

I am using a project with Spring JPA and Hibernate. Most of the things in persistence.xml can be specified in Spring applicationContext.xml file.

S

3条回答
  •  爱一瞬间的悲伤
    2020-12-04 19:06

    persistence.xml is needed when you're using Hibernate through JPA, even though you're using Spring JPA. If you're using Hibernate directly, then persistence.xml isn't needed.

提交回复
热议问题