我有一个名为GenericService的类,其注释为
@Transactional(readOnly = false)
另一个类从名为ExtendedService的GenericService扩展而来。在ExtendedService中,我有一个用
注释的方法 @Transactional(propagation = Propagation.REQUIRES_NEW, readOnly = true)
调用save方法和update方法。到目前为止,save方法工作正常,我的意思是它验证了要用@NotNull
保存的对象,但它没有提交它,否则更新方法执行更新查询并忽略readOnly = true
。什么似乎是问题?