我正在尝试让Spring Data Auditing在Spring 3.2.8 / Spring Data 1.5 / Hibernate 4项目中运行。
根据Spring Data Auditing docs,我已将@CreatedBy
等注释添加到我的实体,由AuditorAware
实现创建,并在我的JavaConfig中实例化。然而,它似乎永远不会发生。
我发现文档有点令人困惑。似乎JavaConfig条目替换了xml条目,但我不确定。
我的申请表中目前没有orm.xml
个文件。说实话,我甚至不确定在何处/如何配置它,或者为什么我需要它。我的所有实体都在使用注释。我尝试将@EntityListeners(AuditingEntityListener.class)添加到实体,但这没有帮助。
我的当前实体管理器是在没有persistence.xml文件的情况下定义的:
<!-- entity manager -->
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="jpaVendorAdapter" ref="hibernateJpaVendorAdapter"/>
<property name="packagesToScan" value="com.ia.domain"/>
<property name="jpaProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
<prop key="hibernate.query.substitutions">true '1', false '0'</prop>
<prop key="hibernate.generate_statistics">true</prop>
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
<prop key="hibernate.ejb.naming_strategy">org.hibernate.cfg.ImprovedNamingStrategy</prop>
<prop key="hibernate.connection.charSet">UTF-8</prop>
</props>
</property>
</bean>
JavaConfig:
@Configuration
@EnableJpaAuditing
public class AuditConfig {
@Bean
public AuditorAware<User> auditorProvider(){
return new SpringSecurityAuditorAware();
}
}
实体:
@EntityListeners({AuditingEntityListener.class})
@Entity
public class User
{
@TableGenerator(name="UUIDGenerator", pkColumnValue="user_id", table="uuid_generator", allocationSize=1)
@Id
@GeneratedValue(strategy=GenerationType.TABLE, generator="UUIDGenerator")
@Column(name="id")
private Long id;
@NotNull
private String username;
@CreatedDate
@NotNull
@Temporal(TemporalType.TIMESTAMP)
@Column(name="created_date", nullable=false)
private Date createdDate;
@LastModifiedDate
@NotNull
@Temporal(TemporalType.TIMESTAMP)
@Column(name="last_modified_date", nullable=false)
private Date lastModifiedDate;
@CreatedBy
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="created_by")
private User createdBy;
@LastModifiedBy
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="last_modified_by")
private User lastModifiedBy;
private String password;
private Boolean enabled;
...
}
我在我的SpringSecurityAuditorAware
课程中设置了断点,但它永远不会被击中。
我还需要一个orm.xml文件吗?如何/从EntityManager引用它?
答案 0 :(得分:7)
使用Stephan的回答https://stackoverflow.com/a/26240077/715640,
我使用自定义侦听器进行此操作。
@Configurable
public class TimestampedEntityAuditListener {
@PrePersist
public void touchForCreate(AbstractTimestampedEntity target) {
Date now = new Date();
target.setCreated(now);
target.setUpdated(now);
}
@PreUpdate
public void touchForUpdate(AbstractTimestampedEntity target) {
target.setUpdated(new Date());
}
}
然后在我的基类中引用它:
@MappedSuperclass
@EntityListeners({TimestampedEntityAuditListener.class})
public abstract class AbstractTimestampedEntity implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.TABLE)
private Long id;
@Temporal(TemporalType.TIMESTAMP)
private Date created;
@Temporal(TemporalType.TIMESTAMP)
private Date updated;
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.created = created;
}
public Date getUpdated() {
return updated;
}
public void setUpdated(Date updated) {
this.updated = updated;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}
FWIW,我在没有orm.xml文件的spring-boot项目中使用它。
答案 1 :(得分:6)
从JPA 2.0开始,如果没有XML文件(orm.xml
),就无法定义这样的实体监听器。
可以通过XML描述符指定应用于持久性单元中所有实体的默认实体侦听器 - 实体侦听器。 (第93页)
如果项目中的所有实体都扩展了AbstractAuditable
超类,那么您可以将@EntityListeners({AuditingEntityListener.class})
放在AbstractAuditable
上。附加到实体类的侦听器由其子类继承。
继承层次结构中的多个实体类和映射的超类可以定义侦听器类 和/或生命周期回调方法直接在类上。 (第93页)
请注意,子类可以使用@ExcludeSuperclassListeners
注释显式排除继承的侦听器。
我想引用的规范中有一个最后一个有趣的脚注:
可以通过列表在实体类中重新引入被排除的侦听器 它们在EntityListeners注释或XML中显式显示 entity-listeners元素。 (脚注[45] p.97 )
以下是一些用于说明解决方法的代码:
<强> AbstractAuditableEntity.java 强>
import java.util.Date;
import javax.persistence.EntityListeners;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.annotation.LastModifiedDate;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
@MappedSuperclass
@EntityListeners({AuditingEntityListener.class}) // AuditingEntityListener will also audit any subclasses of AbstractAuditable...
public abstract class AbstractAuditableEntity {
@Id
@GeneratedValue
private Long id;
@CreatedDate
@Temporal(TemporalType.TIMESTAMP)
private Date createdDate;
@LastModifiedDate
@Temporal(TemporalType.TIMESTAMP)
private Date lastModifiedDate;
}
<强> MyEntity.java 强>
@Entity
public abstract class MyEntity extends AbstractAuditableEntity {
}
我认为可以使用界面Auditable
(@EntityListeners
可以在界面上显示)而不是AbstractAuditable
类但我没有尝试...
答案 2 :(得分:2)
在1.9的spring数据中,您可以使用几个注释启用JPA审核。
来自文档 - http://docs.spring.io/spring-data/jpa/docs/1.9.4.RELEASE/reference/html/#jpa.auditing
使用@EntityListeners(AuditingEntityListener.class)
注释启用逐类审核。我在基类中使用它。
您在@EnableJpaAuditing
课程中还需要@Configuration
才能启用审核。