问题描述
我正在使用@Modifying 进行更新,更新后我正在使用存储库获取数据。但是获取的数据不是更新后的数据,而是更新完成前的数据。 当我使用其他 GET api 获取相同的数据时,会获取更新的数据,但不仅仅是在以相同的方法更新之后。
我的服务类更新方法:
public Response update(Integer value,Long id) {
repository.updateValue(value,id);
Response res = repository.findById(id);
return res;
}
我的 Repository 类更新方法:
@Transactional
@Modifying
@Query(value = "update T1 set value = :value where id = :id",nativeQuery = true)
int updateValue(Integer value,Long id);
如前所述,我在“res”中获得了以前的值。 有人可以帮忙解决这个问题吗?
解决方法
在@Modifying 注释中添加 clearAutomatically=true 后,更新工作正常。
@Transactional
@Modifying(clearAutomatically = true)
@Query(value = "update T1 set value = :value where id = :id",nativeQuery = true)
int updateValue(Integer value,Long id);