SpringBoot学习笔记(六、Mybatis)

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介: SpringBoot学习笔记(六、Mybatis)

Mybatis这个框架式当下比较流行的框架,SpringBoot整合Mybatis其实和整合JPA是比较相似的,有区别的只是数据操作的部分。

1、引入相应依赖

mybatis-spring-boot-starter

         <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.1.1</version>
         </dependency>

pagehelper

  <dependency>
           <groupId>com.github.pagehelper</groupId>
           <artifactId>pagehelper</artifactId>
           <version>4.1.6</version>
         </dependency>

完整pom.xml

<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>edu.hpu</groupId>
  <artifactId>SpringBoot</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>SpringBoot</name>
  <!-- Spring Boot 启动父依赖 -->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.3.RELEASE</version>
    </parent>
    <dependencies>
        <!-- Spring Boot web依赖 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!-- Junit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>
        <!-- 添加servlet依赖 -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
        </dependency>
        <!--添加 jstl依赖 -->
        <dependency>
           <groupId>javax.servlet</groupId>
           <artifactId>jstl</artifactId>
        </dependency>
        <!-- tomcat的支持 -->
        <dependency>
           <groupId>org.apache.tomcat.embed</groupId>
           <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
        <!-- 热部署依赖 -->
        <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
        </dependency>
        <!-- 添加对mysql的支持 -->
        <dependency>
           <groupId>mysql</groupId>
           <artifactId>mysql-connector-java</artifactId>
           <version>5.1.21</version>
        </dependency>
         <!--mybatis支持  -->
         <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.1.1</version>
         </dependency>
         <!-- pagehelper -->
         <dependency>
           <groupId>com.github.pagehelper</groupId>
           <artifactId>pagehelper</artifactId>
           <version>4.1.6</version>
         </dependency>
    </dependencies>
    <properties>
      <java.version>1.8</java.version>
    </properties>
    <build>
       <plugins>
           <plugin>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-maven-plugin</artifactId>
           </plugin>
       </plugins>
    </build>
</project>

2、application.properties

除了数据源相关的配置,和Mybatis相关的还要指明从哪里去找xml配置文件,同时指定别名

spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
spring.datasource.url=jdbc:mysql://localhost:3306/springbootjpa?characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=xing0515
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
mybatis.mapper-locations=classpath:edu/hpu/springboot/mapper/*.xml
mybatis.type-aliases-package=edu.hpu.springboot.pojo

3、数据

懒得再建了,还是用之前的

create database springbootjpa;
use springbootjpa; 
CREATE TABLE category_ ( 
 id int(11) NOT NULL AUTO_INCREMENT,
 name varchar(30), PRIMARY KEY (id) ) DEFAULT CHARSET=UTF8;

相应的实体类

package edu.hpu.springboot.pojo;
public class Category {
   private int id;
   private String name;
  public int getId() {
    return id;
  }
  public void setId(int id) {
    this.id = id;
  }
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
}

4、PageHelperConfig

新建一个包edu.hpu.springboot.config,包下新建一个类 PageHelperConfig,这个类是干什么的,管分页的。

注解@Configuration 表示PageHelperConfig 这个类是用来做配置的。

注解@Bean 表示启动PageHelper这个拦截器。

import org.springframework.context.annotation.Configuration;
import com.github.pagehelper.PageHelper;
@Configuration
public class PageHelperConfig {
  @Bean
    public PageHelper pageHelper() {
        PageHelper pageHelper = new PageHelper();
        Properties p = new Properties();
        p.setProperty("offsetAsPageNum", "true");  //将RowBounds第一个参数offset当成pageNum页码使用.
        p.setProperty("rowBoundsWithCount", "true");  //使用RowBounds分页会进行count查询
        p.setProperty("reasonable", "true");                       //启用合理化时,如果pageNum<1会查询第一页,如果pageNum>pages会查询最后一页
        pageHelper.setProperties(p);
        return pageHelper;
    }
}

5、CategoryMapper

新建一个edu.hpu.springboot.mapper包,包下新建一个接口CategoryMapper

package edu.hpu.springboot.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import edu.hpu.springboot.pojo.Category;
@Mapper
public interface CategoryMapper {
    List<Category> findAll();
    public int save(Category category);
    public void delete(int id);
    public Category get(int id);
    public int update(Category category);
}

6、Category.xml

在edu.hpu.springboot.mapper下新建Category.xml

<?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="edu.hpu.springboot.mapper.CategoryMapper">
        <select id="findAll" resultType="Category">
            select * from category_
        </select>   
        <insert id="save" parameterType="Category">
          insert into category_ ( name ) values (#{name})
        </insert>
        <delete id="delete" parameterType="int">
           delete from category_ where id= #{id}
        </delete>
        <select id="get" parameterType="int" resultType="Category">
          select * from category_ where id= #{id}
        </select>
        <update id="update" parameterType="Category">
           update category_ set name=#{name} where id=#{id}
        </update>
    </mapper>

7、CategoryController

package edu.hpu.springboot.web;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import edu.hpu.springboot.mapper.CategoryMapper;
import edu.hpu.springboot.pojo.Category;
@Controller
public class CategoryController {
   @Autowired
   CategoryMapper categoryMapper;
   @RequestMapping("/listCategory")
   public String listCategory(Model m,@RequestParam(value = "start", defaultValue = "0") int start,@RequestParam(value = "size", defaultValue = "5") int size) throws Exception {
       PageHelper.startPage(start,size,"id desc");
       List<Category> cs=categoryMapper.findAll();
       PageInfo<Category> page = new PageInfo<>(cs);
       m.addAttribute("page", page);         
       return "listCategory";
   }
   @RequestMapping("/addCategory")
   public String listCategory(Category c) throws Exception {
    categoryMapper.save(c);
    return "redirect:listCategory";
   }
   @RequestMapping("/deleteCategory")
   public String deleteCategory(Category c) throws Exception {
    categoryMapper.delete(c.getId());
    return "redirect:listCategory";
   }
   @RequestMapping("/updateCategory")
   public String updateCategory(Category c) throws Exception {
    categoryMapper.update(c);
    return "redirect:listCategory";
   }
   @RequestMapping("/editCategory")
   public String listCategory(int id,Model m) throws Exception {
    Category c= categoryMapper.get(id);
    m.addAttribute("c", c);
    return "editCategory";
   }
}

8、listCategory.jsp与editCategory.jsp

listCategory.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>   
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>查看分类</title>
</head>
<body>
  <div style="width: 500px; margin: 20px auto; text-align: center">
    <table align='center' border='1' cellspacing='0'>
      <tr>
        <td>id</td>
        <td>name</td>
        <td>编辑</td>
        <td>删除</td>
      </tr>
      <c:forEach items="${page.list}" var="c" varStatus="st">
        <tr>
          <td>${c.id}</td>
          <td>${c.name}</td>
          <td><a href="editCategory?id=${c.id}">编辑</a></td>
          <td><a href="deleteCategory?id=${c.id}">删除</a></td>
        </tr>
      </c:forEach>
    </table>
    <br>
    <div>
      <a href="?start=1">[首 页]</a> <a href="?start=${page.pageNum-1}">[上一页]</a>
      <a href="?start=${page.pageNum+1}">[下一页]</a> <a
        href="?start=${page.pages}">[末 页]</a>
    </div>
    <br>
    <form action="addCategory" method="post">
      name: <input name="name"> <br>
      <button type="submit">提交</button>
    </form>
  </div>
  </html>

editCategory.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>修改</title>
</head>
<body>
  <div style="margin: 0px auto; width: 500px">
    <form action="updateCategory" method="post">
      name: <input name="name" value="${c.name}"> <br> <input
        name="id" type="hidden" value="${c.id}">
      <button type="submit">提交</button>
    </form>
  </div>
</body>
</html>

整个项目结构一览(忽略掉那个红叉,不影响)

image.png跑一下

image.pngimage.png关于Mybatis,还可以使用注解的方式,就是不用xml配置,在接口相应语句上添加注解,比如

  @Select("select * from category_ ")
    List<Category> findAll();


相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
12天前
|
缓存 Java 数据库连接
深入探讨:Spring与MyBatis中的连接池与缓存机制
Spring 与 MyBatis 提供了强大的连接池和缓存机制,通过合理配置和使用这些机制,可以显著提升应用的性能和可扩展性。连接池通过复用数据库连接减少了连接创建和销毁的开销,而 MyBatis 的一级缓存和二级缓存则通过缓存查询结果减少了数据库访问次数。在实际应用中,结合具体的业务需求和系统架构,优化连接池和缓存的配置,是提升系统性能的重要手段。
29 4
|
12天前
|
SQL Java 数据库连接
spring和Mybatis的各种查询
Spring 和 MyBatis 的结合使得数据访问层的开发变得更加简洁和高效。通过以上各种查询操作的详细讲解,我们可以看到 MyBatis 在处理简单查询、条件查询、分页查询、联合查询和动态 SQL 查询方面的强大功能。熟练掌握这些操作,可以极大提升开发效率和代码质量。
24 3
|
17天前
|
Java 数据库连接 数据库
spring和Mybatis的逆向工程
通过本文的介绍,我们了解了如何使用Spring和MyBatis进行逆向工程,包括环境配置、MyBatis Generator配置、Spring和MyBatis整合以及业务逻辑的编写。逆向工程极大地提高了开发效率,减少了重复劳动,保证了代码的一致性和可维护性。希望这篇文章能帮助你在项目中高效地使用Spring和MyBatis。
10 1
|
2月前
|
Java 数据库连接 Maven
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和MyBatis Generator,使用逆向工程来自动生成Java代码,包括实体类、Mapper文件和Example文件,以提高开发效率。
135 2
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
|
2月前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
66 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
|
2月前
|
前端开发 Java Apache
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个
本文详细讲解了如何整合Apache Shiro与Spring Boot项目,包括数据库准备、项目配置、实体类、Mapper、Service、Controller的创建和配置,以及Shiro的配置和使用。
446 1
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个
|
2月前
|
Java 关系型数据库 MySQL
springboot学习五:springboot整合Mybatis 连接 mysql数据库
这篇文章是关于如何使用Spring Boot整合MyBatis来连接MySQL数据库,并进行基本的增删改查操作的教程。
147 0
springboot学习五:springboot整合Mybatis 连接 mysql数据库
|
2月前
|
SQL Java 数据库连接
mybatis使用二:springboot 整合 mybatis,创建开发环境
这篇文章介绍了如何在SpringBoot项目中整合Mybatis和MybatisGenerator,包括添加依赖、配置数据源、修改启动主类、编写Java代码,以及使用Postman进行接口测试。
21 0
mybatis使用二:springboot 整合 mybatis,创建开发环境
|
2月前
|
Java 数据库连接 API
springBoot:后端解决跨域&Mybatis-Plus&SwaggerUI&代码生成器 (四)
本文介绍了后端解决跨域问题的方法及Mybatis-Plus的配置与使用。首先通过创建`CorsConfig`类并设置相关参数来实现跨域请求处理。接着,详细描述了如何引入Mybatis-Plus插件,包括配置`MybatisPlusConfig`类、定义Mapper接口以及Service层。此外,还展示了如何配置分页查询功能,并引入SwaggerUI进行API文档生成。最后,提供了代码生成器的配置示例,帮助快速生成项目所需的基础代码。
124 1
|
2月前
|
Java 数据库连接 Maven
Spring整合Mybatis
Spring整合Mybatis