51Testing软件测试论坛

标题: springboot 中用注解生成审计(Auditing)字段。如:@LastModifiedBy [打印本页]

作者: 做自己的女王ヽ    时间: 2019-3-18 17:19
标题: springboot 中用注解生成审计(Auditing)字段。如:@LastModifiedBy

在spring jpa中,支持在字段或者方法上进行注解@CreatedDate、@CreatedBy、@LastModifiedDate、@LastModifiedBy。维护数据库的创建时间、创建人、最后修改时间、最后修改人。实现步骤如下:

一、在需要的实体上做下面的改造。
  1. @MappedSuperclass
  2. @EntityListeners(AuditingEntityListener.class)
  3. public class BaseEntity {
  4.         private static final long serialVersionUID = 7491626901163891174L;
  5.         @Id
  6.         @GeneratedValue(strategy = GenerationType.IDENTITY)
  7.         private Long id;

  8.         @JsonIgnore
  9.         @Temporal(TemporalType.TIMESTAMP)
  10.         @CreatedDate
  11.         @Column(updatable = false)
  12.         private Date createTime;

  13.         @JsonIgnore
  14.         @Temporal(TemporalType.TIMESTAMP)
  15.         @LastModifiedDate
  16.         @Column(updatable = false)
  17.         private Date updateTime;

  18.         @LastModifiedBy
  19.         private String updatedBy;
  20.         //省略getter、setter
复制代码
二、增加AuditorAware实现类。用于获取创建人、最后修改人。
  1. @Component("auditorAware")
  2. public class AuditorAwareImpl implements AuditorAware<String> {

  3.     @Override
  4.     public Optional<String> getCurrentAuditor() {
  5.         Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
  6.         return Optional.of(authentication.getPrincipal().toString());
  7.     }
  8. }
复制代码
三、在springbooot入口类上配置@EnableJpaAuditing。
  1. @SpringBootApplication
  2. @EnableCaching(proxyTargetClass = true)
  3. @EnableJpaAuditing(auditorAwareRef = "auditorAware")
  4. public class TestApplication {
  5. }
复制代码

其中的auditorAwareRef = "auditorAware"就是上面配置的@Component("auditorAware")











欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2