标签: hibernate spring-data-jpa interceptor
我正在使用hibernate.ejb.interceptor来对技术列(Createdby,created_timestamp,Version等)进行审核。该类扩展了EmptyInterceptor。
hibernate.ejb.interceptor
EmptyInterceptor
所有需要审核的对象都由BaseObject扩展。
但是,当我执行更新操作而不是更新时,插入了一条新记录。一旦删除,我就设法跟踪到注释@Version,更新已根据需要执行。
@Version
不知道为什么@Version会导致错误,因为我需要实现用于版本控制的列。
非常感谢!