- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将我们的 DAO maven 模块集成到 spring,我们不想更改 dao 的任何代码。以前,所有的 dao 类都使用以下方式获取实体管理器。
Persistence.getEntityManager()
public class PersistenceManager
{
/**
* Key that stores the entity manager.
*/
private static final String ENTITY_MANAGER_INSTANCE = "ENTITY_MANAGER_INSTANCE";
/**
* Persistence unit for eMyEd
*/
private static final String PERSISTENCE_UNIT_EMYED = "application_openjpa";
/**
* The static factory used across the JVM
*/
private static final EntityManagerFactory ENTITY_MANAGER_FACTORY = Persistence
.createEntityManagerFactory(PERSISTENCE_UNIT_EMYED);
/**
* Cleanup any entity managers created in the thread context.
*/
public static void close()
{
EntityManager emInstance = getEntityManager();
try
{
if (emInstance.isOpen())
{
emInstance.close();
}
}
catch (Throwable t)
{
// ignore
}
finally
{
ThreadContext.instance.clear();
}
}
/**
* Returns the Entity manager associated with the given thread context. If
* none available, one is created and set on the thread context and the same
* is returned.
*
* @return
*/
public static EntityManager getEntityManager()
{
EntityManager emInstance = (EntityManager) ThreadContext.instance
.get(ENTITY_MANAGER_INSTANCE);
if (emInstance == null)
{
emInstance = createEntityManager();
emInstance.setFlushMode(FlushModeType.COMMIT);
ThreadContext.instance.put(ENTITY_MANAGER_INSTANCE, emInstance);
}
try
{
// try to join the current active transaction
emInstance.joinTransaction();
}
catch (TransactionRequiredException notSupportedEx)
{
// If there was no transaction to join. Ignore
}
catch (Throwable unknownEx)
{
// If there was no transaction to join. Ignore
}
return emInstance;
}
/**
* Create a new entity manager.
*
* @return
*/
private static EntityManager createEntityManager()
{
return ENTITY_MANAGER_FACTORY.createEntityManager();
}
}
<description>Example configuration to get you started.</description>
<context:component-scan base-package="com.veera" />
<!-- tell Spring that it should act on any @PersistenceContext and @Transactional annotations found in bean classes -->
<tx:annotation-driven transaction-manager="transactionManager" />
<!-- ******************************************************************** -->
<!-- Setup the transaction manager -->
<!-- ******************************************************************** -->
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<!-- ******************************************************************** -->
<!-- Setup each data source -->
<!-- ******************************************************************** -->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/test" />
<property name="username" value="root" />
<property name="password" value="root" />
</bean>
<!-- ******************************************************************** -->
<!-- Setup each persistence unit -->
<!-- ******************************************************************** -->
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter">
<property name="databasePlatform"
value="org.apache.openjpa.jdbc.sql.MySQLDictionary" />
</bean>
</property>
<property name="persistenceUnitName" value="application_openjpa" />
<!-- property name="loadTimeWeaver">
<bean
class="org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver" />
</property -->
<!-- property name="jpaProperties"> <props> <prop key="hibernate.hbm2ddl.auto">create-drop</prop>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
</props> </property -->
</bean>
<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
<persistence-unit name="application_openjpa"
transaction-type="RESOURCE_LOCAL">
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
<class>com.veera.jpa.Item</class>
<class>com.veera.jpa.Order</class>
<class>com.zreflect.emyed.entity.user.User</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<!-- property name="openjpa.jdbc.SynchronizeMappings" value="buildSchema" /
<property name="openjpa.InitializeEagerly" value="true"/-->
<property name="openjpa.Log" value="File=stdout, DefaultLevel=INFO, Runtime=INFO, SQL=TRACE"/>
</properties>
</persistence-unit>
</persistence>
最佳答案
作为 EntityManager
根据定义,它不是线程安全的,唯一的 - 仍然丑陋的 - 解决方案是持有 EntityManagerFactory
静态创建 EntityManager
可应要求提供工厂实例。
我什至建议通过这种方法更改 DAO 以使用依赖注入(inject),因为您的 DAO 本质上变得不可单元测试,而无需引导整个 JPA 基础设施。
关于spring - 如何在 Spring 中以编程方式获取 entitymanager?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18668378/
有一些使用多个数据源的示例: @Inject @DataSource("users") AgroalDataSource dataSource1; @Inject @DataSource("inven
我试图使用持久性和 servlet guice 扩展,让简单的 webapp 在 Jetty 上与 Guice 和 JPA 一起工作。 我写了这个服务实现类: public class PersonS
我使用 Hibernate 5.1.0.Final、Guice、Jersey。我有创建 EntityManagerFactory 的 HibernateModule并管理EntityManager实例
我正在使用 ThreadLocal 和请求/实体模式来获取实体。这种情况发生时,我关闭了一个实体管理器,并且在后台有一些实体可以编辑、复制和修改,然后我想将其保留或与新的实体管理器合并。我不知道这是一
好的,我正在使用 EJB 3.0 和 hibernate,我们将 .ear 文件放入嵌入 Apache Tomcat 6.0.18 的 Easy-Beans 1.0.1(带有 Hibernate)部署
我正在使用 Spring + JPA + Hibernate + EntityManager 与数据库对话。我收到“A JTA EntityManager cannot use getTransact
更新数据库时我应该更喜欢什么?这两种方法的优缺点是什么?我什么时候应该使用其中一种? public void disemployEmployee(Integer employeeId, Date en
我正在尝试在存储库中注入(inject) EntityManager。 编译成功,但是当我运行应用程序并发送一个发布请求时,我收到了这个错误: Unexpected error occurred: F
我正在尝试在 Spring Tools Suite 和 Pivotal tc Server Developer Edition 上开发 Spring+Hibernate+EntityManager+S
我有一个使用 spring boot + spring data JPA 的示例项目。在日志中,我观察到 EntityManagers 在我进行第一次 rest 调用之前被创建了几次。请澄清为什么会发
给定网络应用程序中的以下情况: // EntityManager em, one per Request with Spring's OpenEntityManagerInViewFilter //
当我们在 JAVA EE 环境中的 EntityManager 上使用 @PersistenceContext 注释时,容器将创建 entityManagerFactory(我猜是整个 session
我遇到了一种情况(我认为这很奇怪,但可能很正常),我使用 EntityManager.getReference(LObj.getClass(), LObj.getId()) 来获取数据库实体,然后通过
我有以下服务... @Stateless @LocalBean public class RandomService { @EJB RandomString stringTokenizer;
我在实体类中有这个函数,但 getDoctrine 不喜欢...... public function getObject() { $em = $this->getDoctrine()->ge
我正在尝试以级联方式保存某个对象并检索它。 我有 3 个对象超过 3 个实体。 实体: class Order { /** * @var integer $id *
我正在开发一个 JPA 应用程序(使用 hibernate ),我正在与 作斗争。自动冲洗 特征。 默认情况下,每当我们处理对任何实体的查询时,完整的 实体管理器 被冲洗。在大多数情况下这是可以的:我
我刚刚建立了一个到目前为止仍然非常小的项目 maven/jpa/hibernate 项目,我试图在其中持久化一个对象。 我的类(class)是一个非常简单的类(class): @Entity publ
我当前的项目使用 HSQLDB2.0 和 JPA2.0 。 场景是:我查询数据库以获取 contactDetails 的列表的 person .我删单contactInfo在 UI 中,但不保存该数据
我是 jpa 和 spring 世界的新手,我目前正在对一个简单的方法进行一些单元测试,但只有当我在单元测试模式下运行我的测试类时才会继续收到此错误消息: java.lang.IllegalState
我是一名优秀的程序员,十分优秀!