SpringBoot + MyBatis 结合 MVC框架设计 第1关:项目整合 - SpringBoot + MyBatis

28 篇文章 11 订阅
5 篇文章 1 订阅
本篇博客指导如何在SpringBoot项目中整合MyBatis-Spring-Boot-Starter,实现通过用户ID查询用户信息的接口。包括配置DataSource、创建Mapper接口、实体类和Controller,以及测试说明和相关代码示例。
摘要由CSDN通过智能技术生成

目录

任务描述

相关知识

使用MyBatis-Spring-Boot-Starter进行整合SpringBoot + MyBatis

使用SpringBoot + MyBatis编写一个查询用户信息的接口

编程要求

测试说明

参考代码


任务描述

本关任务:使用SpringBoot+MyBatis编写一个通过id查询用户信息的小程序。

相关知识

MyBatis-Spring-Boot-Starter可帮助你在Spring Boot之上快速构建MyBatis应用程序。为了完成本关任务,你需要掌握:1.使用MyBatis-Spring-Boot-Starter进行整合SpringBoot + MyBatis。2.使用SpringBoot + MyBatis编写一个查询用户信息的接口

Spring整合MyBatis资料下载:

https://data.educoder.net/api/attachments/420796

使用MyBatis-Spring-Boot-Starter进行整合SpringBoot + MyBatis

博客系统之初识MyBatis中,我们已经学习了如何配置MyBatis,以及通过下列步骤进行访问数据库:

  1. 读取MyBatis核心配置文件;
  2. 通过reader实例化sqlSessionFactory对象;
  3. 创建SqlSession对象;
  4. 执行SqlSession对象执行增改删查操作;
  5. 提交事务;
  6. 释放资源。

MyBatis提供的MyBatis-Spring-Boot-Starter模块,使上面的步骤变得更简单,它提供了如下功能:

  • 自动检测现有的DataSource

  • 将创建并注册SqlSessionFactory的实例,该实例使用SqlSessionFactoryBean将该DataSource作为输入进行传递;

  • 将创建并注册从SqlSessionFactory中获取的SqlSessionTemplate的实例;

  • 自动扫描您的mappers,将它们链接到SqlSessionTemplate并将其注册到Spring上下文,以便将它们注入到您的bean中。

因此我们使用了MyBatis-Spring-Boot-Starter之后,只需要定义一个DataSource即可(application.properties中配置),它会自动创建使用该DataSourceSqlSessionFactoryBean以及SqlSessionTemplate。会自动扫描你的Mappers,连接到SqlSessionTemplate,并注册到Spring上下文中。

是不是很简单、很快捷,接下来让我们来整合吧~首先引入MyBatis-Spring-Boot-Starter依赖:

  1. <dependency>
  2. <groupId>org.mybatis.spring.boot</groupId>
  3. <artifactId>mybatis-spring-boot-starter</artifactId>
  4. <version>2.1.0</version>
  5. </dependency>

接下来配置application.properties来定义一个DataSource

  1. #mysql驱动
  2. spring.datasource.driverClassName = com.mysql.jdbc.Driver
  3. #mysql地址
  4. spring.datasource.url = jdbc:mysql://localhost:3306/information_schema?useUnicode=true&cha\fracterEncoding=utf-8
  5. #mysql用户名
  6. spring.datasource.username = root
  7. #mysql密码
  8. spring.datasource.password = 123123

如此整合完成了,接下来我们来使用它吧。

使用SpringBoot + MyBatis编写一个查询用户信息的接口

我们先使用注解的方式创建一个mapper接口:

  1. @Mapper
  2. public interface DemoMapper {
  3. @Select("select * from users where userId = #{id}")
  4. Users selectUser(int id);
  5. }

Users实体类如下:

  1. @Data
  2. public class Users {
  3. private int id;
  4. private String username;
  5. private String password;
  6. }

接下来让mapper像下面这样注入:

  1. @Controller
  2. public class DemoController {
  3. @Autowired
  4. DemoMapper demoMapper;
  5. @RequestMapping("/query")
  6. @ResponseBody
  7. public Users query(int id) {
  8. Users user = demoMapper.selectUser(id);
  9. return user;
  10. }
  11. }

最后我们只需要创建一个普通的Spring启动应用程序:

  1. import org.springframework.boot.SpringApplication;
  2. import org.springframework.boot.autoconfigure.SpringBootApplication;
  3. @SpringBootApplication
  4. public class Application {
  5. public static void main(String[] args) {
  6. SpringApplication.run(Application.class, args);
  7. }
  8. }

让我们来访问这个接口吧:

编程要求

请仔细阅读右侧代码,结合相关知识,让我们来编写一个通过id查询用户信息的小程序,请在 Begin-End 区域内进行代码补充以下代码:

  1. 在 pom.xml 里增加MyBatis-Spring-Boot-Starter依赖;
  2. application.properties定义DataSource,用户名和密码前后不要有空格,不然会导致密码错误;
  3. Users中创建用户信息实体类userIduserNamepassWord
  4. DemoMapper增加查询用户信息的数据库访问接口;
  5. DemoController增加前端请求接口,设置请求地址为/query, 调用DemoMapper的接口获取数据库数据。

t_user(用户信息表):

| 名称 | 类型 | 注释|主键 |

| ------------ | ------------ | ------------ |

| userId | int | 用户ID | Y |

| userName | varchar | 用户名 | N |

| passWord | varchar | 用户密码 | N |

测试说明

平台将运行你的Java项目,然后访问你编写的网站,访问地址/query,若访问到的数据如下则通过本关。

  1. . ____ _ __ _ _
  2. /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
  3. ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  4. \\/ ___)| |_)| | | | | || (_| | ) ) ) )
  5. ' |____| .__|_| |_|_| |_\__, | / / / /
  6. =========|_|==============|___/=/_/_/_/
  7. :: Spring Boot :: (v2.1.8.RELEASE)
  8. Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
  9. 进行查询....
  10. 查询结果:{"userId":1,"userName":"alice","passWord":"0192023A7BBD73250516F069DF18B500"}

参考代码

TUser.java

package net.educoder.entity;
import javax.validation.constraints.NotBlank;
import lombok.Data;
@Data
public class TUser {
/********* Begin *********/
    /** 用户id **/
    private long userId;
    /** 用户名称 @NotBlank 为非空 **/
    @NotBlank
    private String userName;
    /** 用户密码 **/
    @NotBlank
    private String passWord;
/********* End *********/
}

application.properties

logging.config=classpath:log4j.properties
spring.datasource.initialization-mode=always
/********* Begin *********/
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/information_schema?characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=123123
/********* End *********/

DemoController.java

package net.educoder.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import net.educoder.entity.TUser;
import net.educoder.mapper.DemoMapper;
@Controller
public class DemoController {
/********* Begin *********/
    @Autowired
    DemoMapper demoMapper;
    @RequestMapping("/query")
    @ResponseBody
    public TUser query(int id) {
        TUser user = demoMapper.selectUser(id);
        return user;
    }
/********* End *********/    
}

DemoMapper.java

package net.educoder.mapper;
import net.educoder.entity.TUser;
import net.educoder.entity.Users;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Options;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
@Mapper
public interface DemoMapper {
   /********* Begin *********/
    @Select("select * from t_user  where userId = #{id}")
    TUser selectUser(@Param("id")int id);
  /********* End *********/    
}

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.8.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <groupId>net.educoder</groupId>
    <artifactId>springbootdemo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
             <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-log4j2</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!--              Begin           -->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.0</version>
        </dependency>
        <!--               End           -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

于建章

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值