HibernateEntityManagerClinicTests.java
资源名称:petclinic.rar [点击查看]
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package org.springframework.samples.petclinic.jpa;
- /**
- * <p>
- * Tests for the DAO variant based on the shared EntityManager approach, using
- * Hibernate EntityManager for testing instead of the reference implementation.
- * </p>
- * <p>
- * Specifically tests usage of an <code>orm.xml</code> file, loaded by the
- * persistence provider through the Spring-provided persistence unit root URL.
- * </p>
- *
- * @author Juergen Hoeller
- */
- public class HibernateEntityManagerClinicTests extends EntityManagerClinicTests {
- @Override
- protected String[] getConfigPaths() {
- return new String[] {
- "applicationContext-jpaCommon.xml",
- "applicationContext-hibernateAdapter.xml",
- "applicationContext-entityManager.xml"
- };
- }
- }