是否有 JpaRepository 方法可以在用户名条件下保存提供的密码?
Posted
技术标签:
【中文标题】是否有 JpaRepository 方法可以在用户名条件下保存提供的密码?【英文标题】:Is there a JpaRepository method which can save a provided password where username condition? 【发布时间】:2022-01-10 12:50:38 【问题描述】:我正在寻找一种 JpaRepository 方法来在使用用户名条件重置用户提供的密码时更新它。提前致谢
【问题讨论】:
您有用户实体吗?所以只需更改它并调用 save() 【参考方案1】:根据文档:https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#jpa.query-methods.at-query,查看使用 JPA
创建自定义查询方法。
对于您的用例,以下将允许您更新正确的用户密码:
@Repository
public interface UserRepository extends JpaRepository<User, UUID>
@Query("update User u set u.password= ?1 where u.username = ?2")
void updatePassword(String username, String password);
【讨论】:
【参考方案2】:在 Spring Data JPA 中,无论何时执行更新,都需要使用 @Modifying
和 @Query
。未能使用@Modifying
将导致InvalidDataAccessApiUsage
异常。
找到下面的代码
@Repository
public interface UserRepository extends JpaRepository<User, UUID>
@Modifying
@Query("update User u set u.password= :password where u.username = :username")
void updatePassword(@Param("username") String username, @Param("password") String password);
【讨论】:
以上是关于是否有 JpaRepository 方法可以在用户名条件下保存提供的密码?的主要内容,如果未能解决你的问题,请参考以下文章
关于 Spring JpaRepository 方法线程安全
使用 JpaRepository,getById() 函数返回 null
如何制作没有类型的 JpaRepository,或者只制作查询的 jpa repo?