0

我想覆盖EntityManager.remove()某些实体的方法,以便我可以设置一个active布尔属性,false而不是从数据库中完全删除该对象。这可以看作是软删除。

Entity_Roo_Jpa_ActiveRecord.aj我的类(称为Entity,用作超类)的文件中的 remove 方法如下所示:

@Transactional
public void remove() {
    if (this.entityManager == null) this.entityManager = entityManager();
    if (this.entityManager.contains(this)) {
        this.entityManager.remove(this);
    } else {
        Entity attached = Entity.findEntity(this.id);
        this.entityManager.remove(attached);
    }
}

我找到了EntityManagerFactory使用的定义META-INF/spring/applicationContext.xml

<bean class="org.springframework.orm.jpa.JpaTransactionManager" id="transactionManager">
    <property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<tx:annotation-driven mode="aspectj" transaction-manager="transactionManager"/>
<bean class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" id="entityManagerFactory">
    <property name="persistenceUnitName" value="persistenceUnit"/>
    <property name="dataSource" ref="dataSource"/>
</bean>

是否可以对某个类进行子类化LocalContainerEntityManagerFactoryBean并提供我自己EntityManager的类,还是有更好的方法?

我还注意到使用@PersistenceContext来为 EntityManager 声明一个属性:

@PersistenceContext
transient EntityManager Entity.entityManager;

但我怀疑这只是为了存储 EntityManager 对象而不是指定要使用的实现类(因为 EntityManager 是一个接口)。

编辑:答案可能在于这个答案

4

1 回答 1

2

有几种方法可以做到这一点。

1. 推入式重构remove()方法

remove()您可以将方法推入重构到您的实体类并将active值设置false在方法内并调用,而不是一路更改 entityManager merge()

另请注意,您需要修改查找器和大多数其他方法来过滤设置为的实体active=false

2. Spring Roo Behaviors 附加@RooSoftDelete注解

您还可以使用以下启用软删除的 Spring Roo 插件。

https://redmine.finalconcept.com.au/projects/final-concept-spring-roo-behaviours/wiki/Soft-delete-annoation

它允许您添加一个名为的新注释@RooSoftDelete,该注释负责软删除。

除了上述之外,您还可以编写一个自定义实体管理器工厂来处理所有问题。

干杯。

于 2013-03-29T05:21:42.107 回答