这篇文章主要讲解了“怎么使用Spring注解及代理模式”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么使用Spring注解及代理模式”吧!
成都创新互联凭借专业的设计团队扎实的技术支持、优质高效的服务意识和丰厚的资源优势,提供专业的网站策划、网站设计、网站制作、网站优化、软件开发、网站改版等服务,在成都10余年的网站建设设计经验,为成都1000多家中小型企业策划设计了网站。
- 1.基本的SSJ的导入 - 2.SpringDataJpa
org.springframework.data spring-data-jpa ${spring-data-jpa.version}
1.配置对应的Spring-data-jpa
2.继承JpaRepository interface EmployeeRepository extends JpaRepository
3.完成相应的CRUD
employeeRepository.findAll(); employeeRepository.findOne(Long id); employeeRepository.save(对象); //添加或者修改 employeeRepository.delete(id/对象); employeeRepository.findAll(Pageable) -> 分页 Pageable pageable = new PageRequest(0, 5); //0就是第一页 employeeRepository.findAll(Sort) -> 排序 Sort sort = new Sort(Sort.Direction.DESC,"username"); 如果要把分页和排序结合起来: new PageRequest(0, 5,sort);
1.名称规则 findByUsername(String username) -> 根据名称查询 username = ? findByUsernameLike(String username) -> username like ? findByUsernameLikeAndEmailLike(String username,String email) -> username like ? and email like ? 详细规则请看文件(idea也有提示) 2.Query注解 @Query("jpql的语句") @Query("select o from Employee o where o.name like ?1") //@Query("select o from Employee o where o.name like :name") @Query(nativeQuery = true,value="select * from employee")
可以不写SQL也能够完成功能
1.我们的Repository继承JpaSpecificationExecutor EmployeeRepository extends JpaRepository, JpaSpecificationExecutor 2.findAll的查询方法 employeeRepository.findAll(Specification spec) employeeRepository.findAll(Specification spec,Pageable pageable) new Specification { //root:(根,表)获取字段 //query:where,group by ,order by... //cb: 条件判断(一个或者多个) @Override public Predicate toPredicate(Root root, CriteriaQuery> query, CriteriaBuilder cb) { Path path = root.get("username");//拿到要做查询的字段 Predicate p = cb.like(path, "%1%");//like代表做模糊查询,后面就是它的条件值 return p; } }
//第一个参数: true -> 条件过滤启用 //第二个参数: 需要过滤的属性 //第三个参数: 过滤条件的 ?对应的值 Specification com.github.wenhao jpa-spec 3.1.0 specification = Specifications. and() .eq(StringUtils.isNotBlank(request.getName()), "name", name) .gt(Objects.nonNull(request.getAge()), "age", 18) .build();
Query作用:接收前台传过来的查询条件(分页,数据) BaseQuery:公共的查询【规范,公共的代码】 int currentPage=1; getJpaPage{return currentPage-1} int pageSize=10; String orderName; Boolean orderType=true; 提供getter,setter方法 //规定子类必需提供一个拿到条件的方法 protected abstract Specification createSpec(); //提供获取排序的方法 Sort createSort(){ //1.如果orderName没有值,就返回null【不排序】 //2.如果orderType是DESC,就升级(反之就降序) } EmployeeQuery:Employee单独的查询 username,email,age,... Specification createSpec(){...}
感谢各位的阅读,以上就是“怎么使用Spring注解及代理模式”的内容了,经过本文的学习后,相信大家对怎么使用Spring注解及代理模式这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是创新互联,小编将为大家推送更多相关知识点的文章,欢迎关注!