我在我的 SEAM (2.2.2) 应用程序中遇到延迟初始化异常的问题,我正在使用 SEAM 托管的持久性上下文(使用 JPA),在此处的文档中进行了描述
SEAM 文档参考。9.3.1 使用 JPA 的 SEAM 托管持久性上下文
在我的 GenericDAO 类中使用 @In 注入实体管理器
设想:
我有一个会话范围的 bean,它注入当前登录的用户实体(会话范围),当我尝试通过页面中的 JSF(el)懒惰地加载一些额外的用户属性时,LIE 似乎被抛出。
堆栈跟踪错误:
2012-12-24 15:30:34,661 SEVERE [facelets.viewhandler] (http-0.0.0.0-8080-3) Error Rendering View[/user/settings.xhtml]: javax.el.ELException: /user/settings.xhtml: org.hibernate.LazyInitializationException: could not initialize proxy - no Session
at com.webapp.entities.Client_$$_javassist_29.getLogoUrl
起初我以为对话可能已经超时,但这是通过注销用户来处理的,而不是抛出 LIE
所以现在我想可能是因为用户实体是从会话范围注入的,而操作 bean 是会话范围的,所以对象以某种方式与实体管理器分离?
不幸的是,不是每次都抛出异常,所以我不能轻易地重现它(应用程序是实时的,所以我会在何时通过错误)
我知道我可以通过将用户属性设置为 EAGERLY 来解决这个问题,但我想先深入了解这一点,并且不希望预先加载所有实体
有关我的设置的更多详细信息:
组件.xml:
<persistence:managed-persistence-context name="entityManager"
auto-create="true"
persistence-unit-jndi-name="java:/EntityManagerFactories/appData">
</persistence:managed-persistence-context>
持久性.xml
<persistence-unit name="AppDatabase">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>java:/appDatasource</jta-data-source>
<properties>
<property name="hibernate.connection.datasource" value="java:/appDatasource"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect"/>
<property name="jboss.entity.manager.factory.jndi.name" value="java:/EntityManagerFactories/appData"/>
<property name="hibernate.cache.use_second_level_cache" value="false"/>
<property name="hibernate.show_sql" value="false"/>
</properties>
</persistence-unit>
通用DAO
public abstract class GenericDAOBean<T>
implements GenericDAO<T>, Serializable{
private static final long serialVersionUID = 1L;
private Class<T> entityBeanType;
@In private EntityManager em;
@SuppressWarnings("unchecked")
public GenericDAOBean() {
this.entityBeanType = (Class<T>) ((ParameterizedType) getClass()
.getGenericSuperclass()).getActualTypeArguments()[0];
}
/**
* Set the entity manager to use
*
* @param em
*/
public void setEntityManager(EntityManager em) {
this.em = em;
}
/**
* Get the current seam entity manager
*
* @return
*/
protected EntityManager getEntityManager() {
//Seam entity manager set this way as of version 2.2.0
//can't handle abstract classes and @In doesn't inject
//into this as a parent class
EntityManager entityManager = (EntityManager)Component.getInstance("entityManager");
if (entityManager == null)
throw new IllegalStateException("Seam EntityManager has not been set on "
+getEntityBeanType().getClass().getName()+"DAO before usage!");
return entityManager;
}
//Further Generic method follow here which are removed for brevity
}