审计类:
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作为缓存存储?