Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在拍摄特定实体的快照时,除了时间戳、进行更改的用户等之外,我想添加一个额外的自定义字段(例如:评论,实体中没有描述)。使用自动审核功能时是否可以使用 Javers?如果是,你怎么做?如果没有,是否有计划将其包括在内?
是的,你可以,属性被添加到 jv_commit_property 表中。例如:
Javers javers = JaversBuilder.javers().build(); Map<String, String> params = new HashMap<>(); params.put("comment", "My custom comment"); javers.commit("Some name", myChangedObject, params);