在spring引导中,在redis缓存(使用redis作为持久存储)中实现审计的更好方法是什么



审计类

public class Audit {
private Long createdDateTime;
private Long updatedDateTime;
private String createdBy;
private String updatedBy;
}

实体

public class User extends Audit {

}

有没有办法在spring-redis中监听实体更新/创建事件?

截至目前,更新/创建事件只能在spring数据jpa中捕获。为什么不使用springdatajpa作为永久存储,因为它有更多的内置功能,而redis作为缓存存储?

相关内容

  • 没有找到相关文章

最新更新