%Like% 查询在春季 Jpa存储库
2022-08-31 08:04:48
我想写一个喜欢的查询,但它没有返回任何东西:JpaRepository
LIKE '%place%'
-它不起作用。
LIKE 'place'
完美工作。
这是我的代码:
@Repository("registerUserRepository")
public interface RegisterUserRepository extendsJpaRepository<Registration,Long> {
@Query("Select c from Registration c where c.place like :place")
List<Registration> findByPlaceContaining(@Param("place")String place);
}