Tôi đã quyết định giải quyết nó bằng cách sử dụng ApplicationListener
tùy chỉnh
public class CustomAuditingEventListener implements
ApplicationListener<BeforeConvertEvent<Object>> {
@Override
public void onApplicationEvent(BeforeConvertEvent<Object> event) {
Object source = event.getSource();
if (source instanceof ParentDocument) {
DateTime currentTime = DateTime.now();
ParentDocument parent = (ParentDocument) source;
parent.getChildren().forEach(item -> item.setUpdated(currentTime));
}
}
}
Và sau đó thêm bean tương ứng vào ngữ cảnh ứng dụng
<bean id="customAuditingEventListener" class="app.CustomAuditingEventListener"/>