【Spring Data JPA】05 方法名限定查询
方法名限定查询
方法名限定查询是对JPQL的再封装
按照SpringData提供的方法名定义方法,不需要配置JPQL语句即可完成查询
在IDEA中都有相应的提示
他会按照方法字符判断
public Customer findByCustName(String custName);
然后开始测试
@Test public void jpql5(){ Customer customer = customerDao.findByCustName("黑马程序员"); System.out.println(customer); }
结果
模糊查询
使用模糊查询,关键字是Like,基于SQL结构化语言
SpringDataJPA让这种方法名限定的语法有一种结构化的方式实现
简单说就是语义化
这里我们的方法名称就是这样来写
public List<Customer> findByCustNameLike(String custName);
但是要注意这里!!!JPA不会写死通配符的使用,
怎么配置通配符,只能在固定在硬编码中
多条件查询
findby + 字段名 + 查询方式 + 连接符