审核类别:
public class Audit {
private Long createdDateTime;
private Long updatedDateTime;
private String createdBy;
private String updatedBy;
}
实体
public class User extends Audit {
}
有没有办法在springredis中监听实体更新/创建事件?
审核类别:
public class Audit {
private Long createdDateTime;
private Long updatedDateTime;
private String createdBy;
private String updatedBy;
}
实体
public class User extends Audit {
}
有没有办法在springredis中监听实体更新/创建事件?
1条答案
按热度按时间7gcisfzg1#
到目前为止,update/create事件只能在spring数据jpa中捕获。既然springdatajpa有更多的内置功能,而redis是一个缓存存储,为什么不使用它作为永久存储呢?