spring data jpa中@Query中的模糊查询

/**
 *
 * @author: WYL
 * @createTime: 2015年7月3日 上午10:14:31
 * @history:
 * @param keyName 进行匹配的关键字
 * @return SearchKey
 */
 @Query(value="select * from search_key a where a.key_name  like CONCAT('%',:keyName,'%') limit 1",nativeQuery=true)
 List findByKeyNameLimit(@Param("keyName") String keyName);

你可能感兴趣的:(spring data jpa中@Query中的模糊查询)