Spring 使用注解查询 JPQL 按对象查询

把注解写在接口里面

public interface UserRepository extends JpaRepository<User, Long> {

  @Query("select u from User u where u.emailAddress = ?1")
  User findByEmailAddress(String emailAddress);
}

  

posted @ 2020-01-03 15:07  麦克斯-侯  阅读(222)  评论(0编辑  收藏  举报
百纵科技