摘要:测试程序首先看到顶层服务使用格式进行输出。的列举包括以下值默认,公开所有公开和注解的,除非设置为暴露所有修饰的创建配置类测试分页和排序分页是一个由定义的接口,它拥有一个实现。排序提供一个对象提供排序机制。
使用 JPA 访问数据 创建项目
打开IDEA -> Create New Project
创建目录 创建实体package com.example.demo.entity; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Customer { @Id @GeneratedValue private Long id; private String firstName; private String lastName; protected Customer() { } public Customer(String firstName, String lastName) { this.firstName = firstName; this.lastName = lastName; } @Override public String toString() { return "Customer{" + "id=" + id + ", firstName=" + firstName + ", lastName=" + lastName + "}"; } }创建 repository
创建与实体对应的Repository
package com.example.demo.repository; import com.example.demo.entity.Customer; import org.springframework.data.repository.CrudRepository; import java.util.List; public interface CustomerRepository extends CrudRepository{ List findByLastName(String lastName); }
通过继承CrudRepository继承几种增删改查方法,也可以通过方法名支定义其他查询方法。
添加启动加载类 CommandLineRunner 测试package com.example.demo; import com.example.demo.entity.Customer; import com.example.demo.repository.CustomerRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.CommandLineRunner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; @SpringBootApplication public class SpringDataJpaDemoApplication { public static final Logger log = LoggerFactory.getLogger(SpringDataJpaDemoApplication.class); public static void main(String[] args) { SpringApplication.run(SpringDataJpaDemoApplication.class, args); } @Bean public CommandLineRunner demo(CustomerRepository repository) { return (args -> { repository.save(new Customer("Jack", "Bauer")); repository.save(new Customer("Chloe", "Brian")); repository.save(new Customer("Kim", "Bauer")); repository.save(new Customer("David", "Palmer")); repository.save(new Customer("Michelle", "Dessler")); log.info("Customer found with save() finish"); log.info("Customer found with findAll()"); log.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); for (Customer customer : repository.findAll()) { log.info(customer.toString()); } log.info(""); repository.findById(1L).ifPresent(customer -> { log.info("Customer found with findById()"); log.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); log.info(customer.toString()); log.info(""); }); log.info("Customer found with findByLastName("findByLastName")"); log.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"); repository.findByLastName("Bauer").forEach(bauer -> { log.info(bauer.toString()); }); log.info(""); }); } }
运行程序,通过 log 查看效果
使用 REST 访问 JPA 数据pom.xml 添加依赖
创建实体org.springframework.boot spring-boot-starter-data-rest
package com.example.demo.entity; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class Person { @Id @GeneratedValue(strategy = GenerationType.AUTO) private long id; private String firstName; private String lastName; public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } }创建 repository
package com.example.demo.repository; import com.example.demo.entity.Person; import org.springframework.data.repository.PagingAndSortingRepository; import org.springframework.data.repository.query.Param; import org.springframework.data.rest.core.annotation.RepositoryRestResource; import java.util.List; @RepositoryRestResource public interface PersonRepository extends PagingAndSortingRepository{ List findPersonByLastName(@Param("name") String name); }
此repository是一个接口,允许您执行涉及Person对象的各种操作。它通过继承Spring Data Commons中定义的PagingAndSortingRepository接口来获取这些操作
在运行时,Spring Data REST将自动创建此接口的实现。然后它将使用@RepositoryRestResource注解指导Spring MVC创建RESTful端点/persons。
测试程序
首先看到顶层服务
curl http://localhost:8080/ { "_links" : { "customers" : { "href" : "http://localhost:8080/customers" }, "persons" : { "href" : "http://localhost:8080/persons{?page,size,sort}", "templated" : true }, "profile" : { "href" : "http://localhost:8080/profile" } } }
Spring Data REST使用HAL格式进行JSON输出。它非常灵活,可以方便地提供与所服务数据相邻的链接。
curl http://localhost:8080/persons { "_embedded" : { "persons" : [ ] }, "_links" : { "self" : { "href" : "http://localhost:8080/persons{?page,size,sort}", "templated" : true }, "profile" : { "href" : "http://localhost:8080/profile/persons" }, "search" : { "href" : "http://localhost:8080/persons/search" } }, "page" : { "size" : 20, "totalElements" : 0, "totalPages" : 0, "number" : 0 } }
可以看到customers的也跟着显示出来了,我们可以通过注释隐藏,当然也可以全局隐藏:
设置存储库检测策略Spring Data REST使用RepositoryDetectionStrategy来确定是否将存储库导出为REST资源。的RepositoryDiscoveryStrategies列举包括以下值:
Name | Description |
---|---|
DEFAULT | 默认,ANNOTATION + VISIBILITY |
ALL | 公开所有Repository |
ANNOTATION | 公开@RepositoryRestResource和@RestResource注解的Repository,除非exported设置为false |
VISIBILITY | 暴露所有public修饰的Repository |
创建配置类
package com.example.demo.config; import org.springframework.data.rest.core.config.RepositoryRestConfiguration; import org.springframework.data.rest.core.mapping.RepositoryDetectionStrategy; import org.springframework.data.rest.webmvc.config.RepositoryRestConfigurer; import org.springframework.stereotype.Component; @Component public class RestConfigurer implements RepositoryRestConfigurer { @Override public void configureRepositoryRestConfiguration(RepositoryRestConfiguration config) { config.setRepositoryDetectionStrategy(RepositoryDetectionStrategy.RepositoryDetectionStrategies.ANNOTATED); } }
测试
curl http://localhost:8080/ { "_links" : { "persons" : { "href" : "http://localhost:8080/persons{?page,size,sort}", "templated" : true }, "profile" : { "href" : "http://localhost:8080/profile" } } }分页和排序 分页
Pageable 是一个由 Spring 定义的接口,它拥有一个实现 PageRequest。让我们看看如何创建一个 PageRequest。
Pageable pageable = PageRequest.of(0, 10); Pagepage = repository.findAll(pageable); // 也可以简单一点 Page page = repository.findAll(PageRequest.of(0, 10));
表示请求第一页10个数据。
如果我们要访问下一页,我们可以每次增加页码。
PageRequest.of(1, 10); PageRequest.of(2, 10); PageRequest.of(3, 10); ...排序
Spring Data JPA 提供一个Sort对象提供排序机制。让我们看一下排序的方式。
repository.findAll(Sort.by("fistName")); repository.findAll(Sort.by("fistName").ascending().and(Sort.by("lastName").descending());同时排序和分页
Pageable pageable = PageRequest.of(0, 20, Sort.by("firstName")); Pageable pageable = PageRequest.of(0, 20, Sort.by("fistName").ascending().and(Sort.by("lastName").descending());按示例对象查询
QueryByExampleExecutor
构建复杂查询SpringData JPA 为了实现 "Domain Driven Design" 中的规范概念,提供了一些列的 Specification 接口,其中最常用的便是 :JpaSpecificationExecutor。
使用 SpringData JPA 构建复杂查询(join操作,聚集操作等等)都是依赖于 JpaSpecificationExecutor 构建的 Specification 。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/73506.html
摘要:教程简介本项目内容为教程样例。目的是通过学习本系列教程,读者可以从到掌握的知识,并且可以运用到项目中。本章将进一步讲解,结合完成数据层访问。创建控制器在下面创建控制器用于测试访问程序运行和调试在类中,启动程序。 教程简介 本项目内容为Spring Boot教程样例。目的是通过学习本系列教程,读者可以从0到1掌握spring boot的知识,并且可以运用到项目中。如您觉得该项目对您有用,...
摘要:忽略该字段的映射省略创建数据访问层接口,需要继承,第一个泛型参数是实体对象的名称,第二个是主键类型。 SpringBoot 是为了简化 Spring 应用的创建、运行、调试、部署等一系列问题而诞生的产物,自动装配的特性让我们可以更好的关注业务本身而不是外部的XML配置,我们只需遵循规范,引入相关的依赖就可以轻易的搭建出一个 WEB 工程 上一篇介绍了Spring JdbcTempl...
摘要:以前都是用进行数据库的开发,最近学习之后发现显得更友好,所以我们就一起来了解一下的原理吧。简单介绍持久性是的一个规范。它用于在对象和关系数据库之间保存数据。充当面向对象的领域模型和关系数据库系统之间的桥梁。是标识出主键是指定主键的自增方式。 以前都是用Mybatis进行数据库的开发,最近学习Spring Boot之后发现JPA显得更友好,所以我们就一起来了解一下JPA的原理吧。 Spr...
阅读 2207·2021-11-17 09:33
阅读 2753·2021-11-12 10:36
阅读 3368·2021-09-27 13:47
阅读 855·2021-09-22 15:10
阅读 3453·2021-09-09 11:51
阅读 1348·2021-08-25 09:38
阅读 2733·2019-08-30 15:55
阅读 2573·2019-08-30 15:53