IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> springboot整合Mybatis,超级详细的操作案例 -> 正文阅读

[Java知识库]springboot整合Mybatis,超级详细的操作案例

目录

概述

建表

创建springboot工程

创建student实体类

创建Mapper接口(第一种方式 : @Mapper )

?创建mapper配置文件

编写Service接口以及其实现类

编写Controller测试

在application.properties配置数据库等信息

运行测试

第二种方式 @MapperScan

mapper配置文件自定义


概述

我们在开发项目的时候经常会使用到springboot整合Mybatis(后续会有springboot整合mybatisplus的介绍)。那么我们的步骤是什么样的呢?

建表

比如我们在数据库内创建一个student表,结构如下。

创建springboot工程

使用idea创建springboot工程并加入相关依赖

以上三个依赖即为

 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.2.2</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>

创建student实体类

package com.aoshensoft.entity;

/**
 * @author summer
 * @date 2022-05-04  15:07
 */
public class Student {
    private Integer id;
    private String name;
    private Integer age;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "Student{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

创建Mapper接口(第一种方式 : @Mapper )

package com.aoshensoft.mapper;

import com.aoshensoft.entity.Student;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

/**
 * @author summer
 * @date 2022-05-04  15:09
 */
@Mapper
public interface StudentMapper {
//    添加一个根据id查询对象的方法
    Student selectStudentById(@Param("stuid") Integer id);
}

?创建mapper配置文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.aoshensoft.mapper.StudentMapper">


    <select id="selectStudentById" resultType="com.aoshensoft.entity.Student">
        SELECT id, name, age
        FROM student
        where id = #{stuid}
    </select>
</mapper>

?

编写Service接口以及其实现类

package com.aoshensoft.service;

import com.aoshensoft.entity.Student;

/**
 * @author summer
 * @date 2022-05-04  15:16
 */
public interface StudentService {
     Student queryStudentById(Integer id);
}
package com.aoshensoft.service.impl;

import com.aoshensoft.entity.Student;
import com.aoshensoft.mapper.StudentMapper;
import com.aoshensoft.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * @author summer
 * @date 2022-05-04  15:17
 */
@Service
public class StudentServiceImpl implements StudentService {

    @Autowired
    private StudentMapper studentMapper;

    @Override
    public Student queryStudentById(Integer id) {
        return studentMapper.selectStudentById(id);
    }
}

编写Controller测试

package com.aoshensoft.controller;

import com.aoshensoft.entity.Student;
import com.aoshensoft.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

/**
 * @author summer
 * @date 2022-05-04  15:19
 */
public class StudentController {

    @Autowired
    private StudentService studentService;

    @RequestMapping("/getStudent")
    @ResponseBody
    public String getStudent(Integer id) {
        Student student = studentService.queryStudentById(id);
        return student.toString();
    }
}

在application.properties配置数据库等信息

server.port=9090
server.servlet.context-path=/orm
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=1230
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?serverTimezone=GMT%2B8&characterEncoding=utf-8&useSSL=false

运行测试

第二种方式 @MapperScan

上述方式中我们使在Mapper接口上使用@Mapper注解,如果我们接口有上百个的话,在每个接口上都加上注解@Mapper就显得过于繁琐了。因此我们使用@MapperScan。

此时,我们先将之前的@Mapper注解去掉

在启动类上加上?@MapperScan

?启动运行

mapper配置文件自定义

目前我们的mapper的xml文件所在的文件的目录跟其mapper接口包名是一致的。

如果我们的mapper的xml不放在这个文件下就不会成功。比如,我们将其放在我们创建的一个文件mapper下?

运行不会成功

?

?

此时我们可以指定xml所在的文件目录

?

?运行成功

?如果想看sql语句打印可以在配置中加入如下配置

?这样运行方法后就会看到控制台打印语句

?

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-05-05 11:04:09  更:2022-05-05 11:06:49 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 23:46:21-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码