HibernateEntityManagerClinicTests.java
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package org.springframework.samples.petclinic.jpa;
  2. /**
  3.  * <p>
  4.  * Tests for the DAO variant based on the shared EntityManager approach, using
  5.  * Hibernate EntityManager for testing instead of the reference implementation.
  6.  * </p>
  7.  * <p>
  8.  * Specifically tests usage of an <code>orm.xml</code> file, loaded by the
  9.  * persistence provider through the Spring-provided persistence unit root URL.
  10.  * </p>
  11.  *
  12.  * @author Juergen Hoeller
  13.  */
  14. public class HibernateEntityManagerClinicTests extends EntityManagerClinicTests {
  15. @Override
  16. protected String[] getConfigPaths() {
  17. return new String[] {
  18. "applicationContext-jpaCommon.xml",
  19. "applicationContext-hibernateAdapter.xml",
  20. "applicationContext-entityManager.xml"
  21. };
  22. }
  23. }