Spring Data JPA Example基本使用实例

Spring Data JPA Example基本使用实例
1、创建实体映射
@Entity
@Table(name="tb_user")
@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class User {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Integer id;

    @Column(name="username")
    private String username;

    @Column(name="password")
    private String password;

    @Column(name="email")
    private String email;

    @Column(name="phone")
    private String phone;

    @Column(name="address")
    private String address;
}
2、根据条件精准匹配
    User user = new User();
    user.setUsername("admin");
    //将匹配对象封装成Example对象
    Example<User> example = Example.of(user);
    //根据条件精准匹配对象
    List<User> list = userRepository.findAll(example);
    System.out.println(list);
    备注:使用Example查询,默认情况下会忽略空值
3、自定义匹配器规则
    User user = new User();
    user.setUsername("y");
    user.setAddress("sh");
    user.setPassword("admin");
    //创建匹配器
    ExampleMatcher matcher = ExampleMatcher.matching()
            //模糊查询匹配开头,即{username}%
            .withMatcher("username", ExampleMatcher.GenericPropertyMatchers.startsWith())
            //模糊查询匹配结尾,即%{username}
            //.withMatcher("username", ExampleMatcher.GenericPropertyMatchers.endsWith())
            //全部模糊查询,即%{address}%
            .withMatcher("address", ExampleMatcher.GenericPropertyMatchers.contains())
            //字段不参与匹配,即不管password是什么值都不加入查询条件
            .withIgnorePaths("password");
    //将匹配对象封装成Example对象
    Example<User> example = Example.of(user, matcher);
    //根据条件查询
    List<User> list = userRepository.findAll(example);
    System.out.println(list);
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值