java—在SpringBoot中,在redis缓存(使用redis作为持久存储)中实现审计的更好方法是什么?

2q5ifsrm  于 2021-06-10  发布在  Redis
关注(0)|答案(1)|浏览(392)

审核类别:

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

实体

public class User extends Audit {

}

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

7gcisfzg

7gcisfzg1#

到目前为止,update/create事件只能在spring数据jpa中捕获。既然springdatajpa有更多的内置功能,而redis是一个缓存存储,为什么不使用它作为永久存储呢?

相关问题