JPQL SELECT 未检索更新的数据
JPQL SELECT not retrieving the updated data
我有一个执行这两个操作的控制器方法:
更新客户名称
从数据库中检索更新的客户
customerRepository.updateCustomerName(customerId, name);
Customer updatedCustomer = customerRepository.searchCustomer(customerId);
这些是各自的存储库方法:
@Modifying
@Query("UPDATE Customer c SET c.name = ?2 WHERE c.customerId = ?1")
public int updateCustomerName(Long customerId, String name);
@Query("SELECT c FROM Customer c WHERE c.customerId =?1")
public Customer searchCustomer(Long customerId);
更新工作正常。
执行时,名称在数据库中正确更新。
我面临的问题是 searchCustomer 方法返回带有旧数据(更新前的名称)的 Customer 对象。
不知道为什么。
这段代码不应该再次查询数据库并检索更新的数据吗?
试试看
@Modifying(clearAutomatically = true)
清除缓存并在下一个查询
中对数据库强制执行新的select
也许您应该在查询前使用 flushAutomatically = true
刷新实体
我有一个执行这两个操作的控制器方法:
更新客户名称
从数据库中检索更新的客户
customerRepository.updateCustomerName(customerId, name);
Customer updatedCustomer = customerRepository.searchCustomer(customerId);
这些是各自的存储库方法:
@Modifying
@Query("UPDATE Customer c SET c.name = ?2 WHERE c.customerId = ?1")
public int updateCustomerName(Long customerId, String name);
@Query("SELECT c FROM Customer c WHERE c.customerId =?1")
public Customer searchCustomer(Long customerId);
更新工作正常。
执行时,名称在数据库中正确更新。
我面临的问题是 searchCustomer 方法返回带有旧数据(更新前的名称)的 Customer 对象。
不知道为什么。
这段代码不应该再次查询数据库并检索更新的数据吗?
试试看
@Modifying(clearAutomatically = true)
清除缓存并在下一个查询
也许您应该在查询前使用 flushAutomatically = true
刷新实体