嗨,我正在使用带有 spring 和 mongodb 的休眠 JPA,并且我在 Glassfish-4.0 上运行我的应用程序。
我的服务等级是:
@Component
public class Test {
@PersistenceContext
EntityManager em;
EntityManagerFactory emf;
@Transactional
public String persist(Details details) {
details.getUsername();
details.getPassword();
Query query = em.createNativeQuery("db.details.find(username="+details.getUsername()+"&password="+details.getPassword());
em.getTransaction().begin();
em.persist(details);
em.getTransaction().commit();
em.flush();
em.clear();
em.close();
query.executeUpdate();
System.out.println("Sucessful!");
return "persist";
}
}
我的 spring-context.xml 是:
<?xml version="1.0" encoding="UTF-8"?>
<beans 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:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="com.javapapers.spring.mvc" />
<context:annotation-config />
<mvc:annotation-driven />
<tx:annotation-driven transaction-manager="txManager" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/view/" />
<property name="suffix" value=".jsp" />
</bean>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
<property name="persistenceUnitName" value="ogmTest"/>
</bean>
<bean id="txManager" class="org.springframework.transaction.jta.JtaTransactionManager">
</bean>
</beans>
我在代码中应用了一些更改,但它们没有效果。谁能帮我解决这个问题。提前致谢。
原文由 user41498 发布,翻译遵循 CC BY-SA 4.0 许可协议
我不确定这是否会对您的情况有所帮助(即它是否仍然存在),但是,在搜索网络以查找类似问题之后。
我正在从持久性 EntityManager 创建本机查询以执行更新。
我收到以下错误:
许多解决方案建议将 @Transactional 添加到您的方法中。只是这样做并没有改变错误。
一些解决方案建议向 EntityManager 询问
EntityTransaction
以便您可以调用开始并自己提交。这会引发另一个错误:然后我尝试了一种方法,大多数网站都说这是使用应用程序管理的实体管理器而不是容器管理的(我相信 Spring 是),那就是
joinTransaction()
。有
@Transactional
装饰方法然后调用joinTransaction()
在调用–之前在EntityManager对象上调用query.executeUpdate()
工作。