Spring Boot默认采用整合SpringData的方式统一处理数据访问层,通过添加大量自动配置,引入各种数据访问模板xxxTemplate以及统一的Repository接口,从而达到简化数据访问层的操作。
Spring Data提供了多种类型数据库支持,对支持的的数据库进行了整合管理。

Spring Boot整合MyBatis

因为Spring Boot框架开发的便利性,所以实现Spring Boot与数据访问层框架(例如MyBatis)的
整合非常简单,主要是引入对应的依赖启动器,并进行数据库相关参数设置即可。

基础环境搭建:

1、数据准备

2、创建项目,引入相应的启动器

image.png
image.png
image.png
image.png

注意: 如果不是这样引入,而是在pom.xml下添加,则如下

  1. <!-- 配置数据库驱动和mybatis dependency -->
  2. <dependency>
  3. <groupId>org.mybatis.spring.boot</groupId>
  4. <artifactId>mybatis-spring-boot-starter</artifactId>
  5. <version>1.3.2</version>
  6. </dependency>
  7. <!--在maven中配置数据库驱动-->
  8. <dependency>
  9. <groupId>mysql</groupId>
  10. <artifactId>mysql-connector-java</artifactId>
  11. </dependency>
  12. <!--配置spring-boot-starter-jdbc-->
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-jdbc</artifactId>
  16. </dependency>

3、编写实体类

与数据库表t_comment和t_article对应的实体类Comment和Article

  1. public class Comment {
  2. private Integer id;
  3. private String content;
  4. private String author;
  5. private Integer aId;
  6. // get/set方法,toString方法
  7. }
  1. public class Article {
  2. private Integer id;
  3. private String title;
  4. private String content;
  5. // get/set方法,toString方法
  6. }

4、编写配置文件

在application.properties配置文件中进行数据库连接配置

  1. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  2. # MySQL数据库连接配置
  3. spring.datasource.url=jdbc:mysql://localhost:3306/springbootdata?serverTimezone=UTC
  4. spring.datasource.username=root
  5. spring.datasource.password=000000

如果在application.yml文件中进行数据库连接配置如下

  1. spring:
  2. datasource:
  3. username: root
  4. password: root
  5. url: jdbc:mysql:///springbootdata?useUnicode=true&characterEncoding=utf8&useSSL=true&serverTimezone=UTC
  6. driver-class-name: com.mysql.jdbc.Driver
  7. # 使用druid数据源
  8. type: com.alibaba.druid.pool.DruidDataSource

接下来分别用注解、配置文件等方法进行整合Mybatis

A、先用注解整合Mybatis

1、创建接口

一个用于对数据库表t_comment数据操作的接口CommentMapper

  1. @Mapper //表示该类是一个MyBatis接口文件,并保证能够被Spring Boot自动扫描到
  2. public interface CommentMapper {
  3. @Select("SELECT * FROM t_comment WHERE id =#{id}")
  4. public Comment findById(Integer id);
  5. }

注意:

image.png

2、编写测试方法

  1. @RunWith(SpringRunner.class)
  2. @SpringBootTest
  3. class SpringbootdataApplicationTests {
  4. @Autowired
  5. private CommentMapper commentMapper;
  6. @Test
  7. void contextLoads() {
  8. Comment byId = commentMapper.findById(1);
  9. System.out.println(byId);
  10. }
  11. }

3、结果为:

image.png

4、添加开启驼峰命名匹配映射配置

外键没有映射成功。这是因为编写的实体类Comment中使用了驼峰命名方式将t_comment表中的a_id字段设计成了aId属性,所以无法正确映射查询结果。为了解决上述由于驼峰命名方式造成的表字段值无法正确映射到类属性的情况,可以在Spring Boot全局配置文件application.properties中添加开启驼峰命名匹配映射配置,示例代码如下

  1. #开启驼峰命名匹配映射
  2. mybatis.configuration.map-underscore-to-camel-case=true

image.png

5、再次打印结果如下

image.png

B、使用配置文件的方式整合MyBatis


1、创建一个用于对数据库表t_article数据操作的接口ArticleMapper

2、创建XML映射文件

resources目录下创建一个统一管理映射文件的包mapper,并在该包下编写与ArticleMapper接口方应的映射文件ArticleMapper.xml

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  3. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  4. <mapper namespace="com.slin.mapper.ArticleMapper">
  5. <select id="selectArticle" resultType="com.slin.pojo.Article" >
  6. select * from t_article where id = #{id}
  7. </select>
  8. </mapper>

3、配置XML映射文件路径。

在项目中编写的XML映射文件,Spring Boot并无从知晓,所以无法扫描到该自定义编写的XML配置文件,还必须在全局配置文件application.properties中添加MyBatis映射文件路径的配置,同时需要添加实体类别名映射路径示例代码如下

  1. #配置MyBatis的xml配置文件路径
  2. mybatis.mapper-locations=classpath:mapper/*.xml
  3. # 配置XML映射文件中指定的实体类别名路径
  4. mybatis.type-aliases-package=com.slin.pojo

image.png

4、编写单元测试进行接口方法测试

  1. @Autowired
  2. private ArticleMapper articleMapper;
  3. @Test
  4. public void selectArticle(){
  5. Article article = articleMapper.selectArticle(1);
  6. System.out.println(article);
  7. }

运行结果为:

image.png
使用了别名后,resultType=”article” 返回值的类型就是别名类型了。

采用包扫描Mapper接口

如果有很多Mapper接口。那么就不需要再每一个接口上面添加@Mapper。只需要在项目启动类添加
image.png

Spring Boot整合JPA


1、添加Spring Data JPA依赖启动器。

在项目的pom.xml文件中添加Spring Data JPA依赖启动器。

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-jpa</artifactId>
  4. </dependency>

2、编写ORM实体类与表的映射关系。

image.png

  1. @Entity
  2. @Table(name = "t_comment") // 设置ORM实体类,并指定映射的表名
  3. public class Comment {
  4. @Id // 指定主键
  5. @GeneratedValue(strategy = GenerationType.IDENTITY) // 主键自增
  6. private Integer id;
  7. private String content;
  8. private String author;
  9. // 上面都是实体类属性名和表的字段名是一致的,不需要映射,下面这个外键是不一致的,需要映射
  10. @Column(name = "a_id") // //指定映射的表的字段名
  11. private Integer aId;
  12. // get/set ,toString
  13. }

3、编写Repository接口 :CommentRepository

  1. // 继承于JpaRepository就具有单表的增删改查操作
  2. public interface CommentRepository extends JpaRepository<Comment,Integer> {
  3. }

4、测试

  1. @Autowired
  2. private CommentRepository commentRepository;
  3. @Test
  4. public void selectComment(){
  5. Optional<Comment> byId = commentRepository.findById(1);
  6. if(byId.isPresent()){
  7. System.out.println(byId.get());
  8. }
  9. }

5、测试结果

image.png

Spring Boot整合Redis

除了对关系型数据库的整合支持外,Spring Boot对非关系型数据库也提供了非常好的支持。
Spring Boot与非关系型数据库Redis的整合使用 。

1、添加Spring Data Redis依赖启动器

先在项目的pom.xml文件中添加Spring Data Redis依赖启动器.

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-redis</artifactId>
  4. </dependency>

2、编写实体类

此处为了演示Spring Boot与Redis数据库的整合使用,在项目的com.slin.pojo包下编写几个对应的实体类

  1. //此处表示针对Person实体类的数据操作都存储在Redis数据库中名为persons的存储空间下。
  2. @RedisHash("persons") // 指定操作实体类对象在Redis数据库中的存储空间
  3. public class Person {
  4. //在Redis数据库中会默认生成字符串形式的HashKey表示唯一的实体
  5. //对象id,当然也可以在数据存储时手动指定id
  6. @Id // 标识实体类主键
  7. private String id;
  8. //使用该注解后会在Redis数据库中
  9. //生成属性对应的二级索引,索引名称就是属性名,可以方便的进行数据条件查询
  10. @Indexed // 标识对应属性在Redis数据库中生成二级索引
  11. private String firstname;
  12. @Indexed
  13. private String lastname;
  14. private Address address;
  15. // toString ,set/get
  16. }
  1. public class Address {
  2. @Indexed
  3. private String city;
  4. @Indexed
  5. private String country;
  6. // get/set/toString
  7. }

3、编写Repository接口

Spring Boot针对包括Redis在内的一些常用数据库提供了自动化配置,可以通过实现Repository接口简化对数据库中的数据进行增删改查操作

  1. //在操作Redis数据库时编写的Repository接口文件需要继承最底层的CrudRepository接口,
  2. //而不是继承JpaRepository,这是因为JpaRepository是Spring Boot整合/PA特有的。
  3. public interface PersonRepository extends CrudRepository<Person,String> {
  4. List<Person> findByAddress_City(String name);
  5. }

image.png

4、Redis数据库连接配置

在项目的全局配置文件application.properties中添加Redis数据库的连接 配置

  1. # Redis服务器地址
  2. spring.redis.host=127.0.0.1
  3. # Redis服务器连接端口
  4. spring.redis.port=6379
  5. # Redis服务器连接密码(默认为空)
  6. spring.redis.password=

5、执行测试代码(添加模块)

  1. // 整合Redis
  2. @Autowired
  3. private PersonRepository personRepository;
  4. @Test
  5. public void savePerson(){
  6. Person person = new Person();
  7. person.setFirstname("张");
  8. person.setLastname("三");
  9. Address address = new Address();
  10. address.setCity("北京");
  11. address.setCountry("中国");
  12. person.setAddress(address);
  13. // 向Redis数据库添加数据
  14. personRepository.save(person);
  15. }

6、查看redis发现已经成功存入redis数据库中

image.pngimage.png

7、执行查询

  1. @Test
  2. public void selectPerson(){
  3. List<Person> personList = personRepository.findByAddress_City("北京");
  4. for (Person person : personList) {
  5. System.out.println(person);
  6. }
  7. }

查询结果

image.png