- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经解决了很多类似的问题,通常答案是将 @Transactional
添加到类和方法中。但这对我不起作用,因此我认为我做错了什么?
我的存储库:
@Repository
public class MyRepository extends AbstractRepository<MyEntity> implements org.springframework.data.repository.Repository<MyEntity, Long> {
@PersistenceContext
private EntityManager em;
public MyRepository() {
super(MyEnitiy.class);
}
@Override
public EntityManager getEntityManager() {
return em;
}
@SuppressWarnings("unchecked")
@Transactional
public List<MyEnitiy> getAllFor(Integer id) {
return getEntityManager().createQuery("SELECT k FROM MyEntity k WHERE k.otherid = :otherid ORDER BY k.something", MyEntity.class)
.setParameter("otherid", id).getResultList();
}
}
抽象存储库:
@Transactional(readOnly = true)
public abstract class AbstractRepository<T> {
...
@Modifying
@Transactional
public void edit(T entity) {
getEntityManager().merge(entity);
}
...
}
我的 Sping Web Controller (代码片段):
@Controller
public class MyController {
@Autowired
private MyRepository myRepository;
@RequestMapping(value = {"/here/there"}, method = RequestMethod.GET)
@ResponseBody
@Transactional
public String hereAndTherePage(@RequestParam(value = "id", required = true) Integer id,
HttpServletRequest request, HttpSession session) {
List<MyEntity> myEntities = myRepository.getAllFor(id);
for(MyEntity myEntity : myEntities) {
...
myEntity.setSomeValue(myEntity.getSomeValue() + 1);
...
myRepository.edit(myEntity);
更新:
spring-database.xml(使用池是尝试修复 Tomcat 内存泄漏):
<bean class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="com.example.*" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="database" value="MYSQL" />
<property name="generateDdl" value="true" />
</bean>
</property>
</bean>
<bean id="poolProperties" class="org.apache.tomcat.jdbc.pool.PoolProperties">
<property name="url" value="jdbc:mysql://localhost:3306/bfwinkel?noAccessToProcedureBodies=true"/>
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="validationQuery" value="SELECT 1"/>
<property name="testOnBorrow" value="true"/>
<property name="jdbcInterceptors" value="org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;org.apache.tomcat.jdbc.pool.interceptor.StatementFinalizer"/>
<property name="maxActive" value="10"/>
<property name="maxIdle" value="10"/>
<property name="username" value="d[-.-]b"/>
<property name="password" value="~!~"/>
</bean>
<bean id="dataSource" class="org.apache.tomcat.jdbc.pool.DataSource" destroy-method="close">
<property name="poolProperties" ref="poolProperties"/>
</bean>
调用getEntityManager().merge(entity);
时抛出异常:
javax.persistence.TransactionRequiredException: No transactional EntityManager available
最佳答案
将以下行添加到您的 spring-database.xml
<bean id="txManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
<property name="dataSource" ref="dataSource" />
<property name="jpaDialect" ref="jpaDialect" />
</bean>
<tx:annotation-driven transaction-manager="txManager" />
关于java - Spring Web App + JPA 没有可用的事务性 EntityManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39207592/
有什么方法可以向 NSUserDefaults 添加事务性吗?我需要类似于数据库处理程序上众所周知的开始 - 提交 - 恢复功能,因此我可以在某些情况下恢复对用户默认值的修改。当然,该用户默认值的其他
我使用 SQL Azure 来存储 Blob 元数据,并使用 Azure Blob 存储来存储实际的 Blob。 Blob 创建/删除是通过在环境 TransactionScope 中登记这些操作来实
我正在使用 Google App Engine SDK 1.7.3 和 NDB 来访问数据存储区。 我应该如何从事务性tasklet 中运行非事务性tasklet? 我首先想到的是以下内容: @ndb
Spring Retry 是否保证与 Spring 的 @Transactional 注解一起工作? 具体来说,我正在尝试使用 @Retryable 进行乐观锁定。它似乎取决于所创建的 AOP 代理的
我正在尝试关注 Clean Architecture使用围棋。该应用程序是一个简单的图像管理应用程序。 我想知道如何最好地为我的存储库层设计接口(interface)。我不想将所有存储库方法组合到一个
考虑我有一个 Controller 方法 get()它调用了一些使用数据库的服务方法。 使整个 Controller 方法成为事务性还是每个服务方法是正确的? 在我看来,我们必须做 get()事务性,
背景: 我知道 this SO question关于事务性 NTFS (TxF) 和 this article描述如何使用它,但我正在寻找真实世界的经验,其中有大量的 blob 数据(例如文档和/或照
遵循 this question 的建议,我正在使用 to_regclass 函数来检查表是否存在,如果不存在则创建它。但是,如果表是在当前事务中创建的,to_regclass 似乎仍会返回 null
同时向 Neo4J's transactional Cypher API 发送 Cypher 查询,我遇到了以下错误: Neo.ClientError.Request.InvalidFormat Un
持续交付 我正在为关系存储构建一个带有 MySQL 数据库的应用程序。应用程序被设计为持续交付,为此,应用程序数据库必须就地升级。 基本方法 1. Application -> Transaction
我需要通过 SCP 将同一个文件以事务方式发送到多个服务器。它将覆盖文件的先前版本。我需要保证每台服务器都有新文件,或者每台服务器都有旧文件。服务器暂时处于中间状态是可以接受的,只要它以一致的状态结束
我有一个 C++ 应用程序,其内存数据集由一组对象组成,每个对象都附加了一个键/值集。对象和键由 int id 引用,值始终是单个类的实例。键 ID 在一个对象中是唯一的,对象 ID 在整个宇宙中是唯
假设有一个服务组件,使用 Book 实体的 CrudRepository。假设服务的方法之一应该是事务性的,并且应该(除其他外)使用事务性语义从数据库中删除一个实体(即,如果无法执行删除,则应回滚所有
我在 REST 接口(interface)中注入(inject)了 @RequestScoped、@Transactional CDI bean: @RequestScoped @Transactio
我正在寻找一些建议以最好地执行此要求: 我需要调用 3 或 4 个单独的 API/端点来将用户添加到我们的系统(使用表单)。 第一个调用添加一个用户帐户并返回一个 ID。 第二个使用不同的端点创建联系
我正在尝试使用JPATransactionManager运行camel transacted()路由(一个独立的java进程),JPATransactionManager是spring Platfor
这是在应用程序引擎中 transaction docs ... Note: If your application receives an exception when committing a tr
我正在寻找在 Neo4j 2.2.x 上使用 JQuery 创建 REST POST 请求的代码示例 Transactional Cypher HTTP endpoint与新REST API Auth
我是一名优秀的程序员,十分优秀!