专家/大师/朋友
我们正在使用Spring 3.2、JPA 2、Hibernate 4.2组合,并面临这个奇怪的空指针问题,同时试图将任何Spring注释的bean注入到EmtyInterceptor中,实现如下所示。我们试着给这个豆子和Spring的豆子注释,但是没有成功。
非常感谢您对解决这个难题的任何帮助。
import javax.inject.Inject;
import javax.inject.Named;
import org.hibernate.EmptyInterceptor;
import org.hibernate.type.Type;
import org.springframework.transaction.annotation.Transactional;
...
@Named
@Transactional
public class AuditEmptyInterceptor extends EmptyInterceptor {
/**
*
*/
private static final long serialVersionUID = 1L;
// Didnt inject - Null
@PersistenceContext
private EntityManager entityManager;
// Didnt inject - Null
//@PersistenceUnit
//private EntityManagerFactory entityManagerFactory;
// Didnt inject - Null
//@Inject
//private AuditHelper auditHelper;
@Override
public boolean onSave(Object entity, Serializable id, Object[] currentState,
String[] propertyNames, Type[] types) {
System.out.println("**********inside OnSave() in Audit Empty Interceptor******************");
if(entity instanceof xxAuditInterface || entity instanceof xxxCompBranchInterface){
for (int i = 0; i < propertyNames.length; i++) {
...
...
// Null entityManager - NPE here
javax.persistence.Query query = entityManager.createQuery("Select c From CompanyDO c Where c.companyName =:companyName");
query.setParameter("companyName", xxx);
CompanyMasterDO companyMasterDO = (CompanyMasterDO) query.getSingleResult();
...
...
}
}
}
}
在应用程序的其他地方,注入就像一个魅力,没有任何问题。这是我们的应用程序上下文。xml
<?xml version="1.0" encoding="UTF-8"?>
<beans default-lazy-init="true"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:sec="http://www.springframework.org/schema/security"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.2.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd">
<context:annotation-config></context:annotation-config>
<context:component-scan base-package="com" />
<context:property-placeholder location="classpath*:hibernate.properties" />
<tx:annotation-driven />
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="com"/>
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource"
p:driverClassName="com.mysql.jdbc.Driver" p:url="jdbc:mysql://localhost/rcent_rel_2"
p:username="root" p:password="root" />
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
p:dataSource-ref="dataSource" p:jpaVendorAdapter-ref="jpaAdapter">
<property name="loadTimeWeaver">
<bean
class="org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver" />
</property>
<property name="persistenceXmlLocation" value="classpath*:META-INF/spring-persistence.xml" />
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"
p:entityManagerFactory-ref="entityManagerFactory" />
<bean id="jpaAdapter"
class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"
p:database="MYSQL"
p:showSql="false"
p:databasePlatform="org.hibernate.dialect.MySQL5Dialect"/>
<\beans>
还有我们Spring的坚持。下面是xml。请注意,我在这里添加了EmptyReceptor属性。
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" version="2.0">
<persistence-unit name="xxx" transaction-type="RESOURCE_LOCAL">
<class>com.xxx</class>
...
...
<properties>
<property name="hibernate.ejb.interceptor"
value="com.company.demo.audit.AuditEmptyInterceptor" />
</properties>
</persistence-unit>
</persistence>
让我知道你在这方面的宝贵想法/建议。再次感谢您抽出时间阅读本文。
我还阅读了在Hibernate的EmptyInterceptor中注入JPA实体管理器的帖子。但看起来他们正在手动查找名为的bean来解析,我觉得可能还有其他方法。
AuditEmptyInterceptor
不是由Spring管理的bean,而是由Hibernate实例化的,因此不能向其中注入依赖项。
您可以使用静态委托:
public class StaticDelegateInterceptor extends EmptyInterceptor {
private static Interceptor interceptor;
public static void setInterceptor(Interceptor interceptor) {
StaticDelegate.interceptor = interceptor;
}
public boolean onSave(Object entity, Serializable id, Object[] state, String[] propertyNames, Type[] types) {
return StaticDelegate.interceptor.onSave(entity, id, state, propertyNames, types);
}
...
}
在持久性上注册StaticDelegateInterceptor。xml
<persistence>
<persistence-unit name="xxx" transaction-type="RESOURCE_LOCAL">
<class>com.xxx</class>
...
...
<properties>
<property name="hibernate.ejb.interceptor"
value="com.company.demo.audit.StaticDelegateInterceptor" />
</properties>
</persistence-unit>
</persistence>
修改当前AuditEmptyInterceptor,使其向StaticDelegateInterceptor注册:
@Named
@Transactional
public class AuditEmptyInterceptor extends EmptyInterceptor {
@PostConstruct
public void init() {
StaticDelagateInterceptor.setInterceptor(this);
}
...
}
最后,通过设置depends-on属性,确保您的entityManagerFactory
bean依赖于您的auditEmptyInterceptor
:
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
p:dataSource-ref="dataSource" p:jpaVendorAdapter-ref="jpaAdapter"
depends-on="auditEmptyInterceptor" >
...
</bean>
问题内容: 我的战争包含以下内容: persistence.xml: web.xml: 我的TestServlet类如下: package com.test.service; 调用get()方法时,我得到一个NullPointerException; 尚未注入EntityManager。关于我可能缺少的或如何诊断的任何建议?服务器日志中几乎没有。 我确定我在没有jboss-web.xml或web.
问题内容: 我已经创建了自己的服务,并且需要注入原则EntityManager,但是我没有看到在我的服务上被调用,并且注入不起作用。 这是代码和配置: 这是我的包 我已经将.yml导入了我的应用中 当我在控制器中致电服务时 我得到一个对象(不为null),但是在UserService中为null,正如我已经提到的,从未调用过UserService上的构造函数 还有一件事,Controller和Us
我已经创建了自己的服务,需要注入doctrine EntityManager,但我看不到在我的服务上调用了,注入也不起作用。 以下是代码和配置: 这是我的包中的 我已经导入了. yml在在我的应用程序中 当我在控制器中调用服务时 我得到一个对象(不是null),但是
如何使用Spring JPA注入EntityManager对象 我使用的是spring上下文 我的dao是,注入EntityManager 我的persistence.xml 所以我收到以下错误:
在我的J2EE应用程序中,我尝试使用spring boot和JPA技术,并将EntityManager注入DAO层。然而,我有一些问题。。。我的用户CRUD存储库: 我的spring boot应用程序类: } 最后是我的坚持。xml,位于src/main/resources/META-INF文件夹中: 所以,当我尝试使用这个注入的entityManager时,我得到了NullPointerExce