SSM和Spring Boot

目录

  • 一、整合MyBatis
    • 整合项目
    • 测试
  • 二、整合MyBatisplus
    • MyBatisplus简介
    • MyBatisplus整合
    • 测试
    • 编写连表查询

一、整合MyBatis

整合项目

首先创建项目

SSM和Spring Boot_第1张图片
SSM和Spring Boot_第2张图片
SSM和Spring Boot_第3张图片

勾选插件

SSM和Spring Boot_第4张图片

SSM和Spring Boot_第5张图片

SSM和Spring Boot_第6张图片

SSM和Spring Boot_第7张图片
SSM和Spring Boot_第8张图片

因为博主的mysql版本可能太高,版本太高不稳定,所以修改配置文件把版本改低一点

SSM和Spring Boot_第9张图片

那么随知application.yml也要发生该改变

SSM和Spring Boot_第10张图片

导入数据库的配置文件

jdbc.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/y101?useUnicode=true&characterEncoding=UTF-8
jdbc.username=root
jdbc.password=123456

然后导入自动生成代码的文件(里面注意生存的路径和生存的表)

SSM和Spring Boot_第11张图片
SSM和Spring Boot_第12张图片

generatorConfig.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >
<generatorConfiguration>
    <!-- 引入配置文件 -->
    <properties resource="jdbc.properties"/>

    <!--指定数据库jdbc驱动jar包的位置-->
    <classPathEntry location="D:\\zking\\xuexiruanjian\\xuexiexe\\mavenjar\\mvn_repository\\mysql\\mysql-connector-java\\5.1.44\\mysql-connector-java-5.1.44.jar"/>

    <!-- 一个数据库一个context -->
    <context id="infoGuardian">
        <!-- 注释 -->
        <commentGenerator>
            <property name="suppressAllComments" value="true"/><!-- 是否取消注释 -->
            <property name="suppressDate" value="true"/> <!-- 是否生成注释代时间戳 -->
        </commentGenerator>

        <!-- jdbc连接 -->
        <jdbcConnection driverClass="${jdbc.driver}"
                        connectionURL="${jdbc.url}" userId="${jdbc.username}" password="${jdbc.password}"/>

        <!-- 类型转换 -->
        <javaTypeResolver>
            <!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.-->
            <property name="forceBigDecimals" value="false"/>
        </javaTypeResolver>

        <!-- 01 指定javaBean生成的位置 -->
        <!-- targetPackage:指定生成的model生成所在的包名 -->
        <!-- targetProject:指定在该项目下所在的路径  -->
        <javaModelGenerator targetPackage="com.xlb.springbootmybits.model"
                            targetProject="src/main/java">
            <!-- 是否允许子包,即targetPackage.schemaName.tableName -->
            <property name="enableSubPackages" value="false"/>
            <!-- 是否对model添加构造函数 -->
            <property name="constructorBased" value="true"/>
            <!-- 是否针对string类型的字段在set的时候进行trim调用 -->
            <property name="trimStrings" value="false"/>
            <!-- 建立的Model对象是否 不可改变  即生成的Model对象不会有 setter方法,只有构造方法 -->
            <property name="immutable" value="false"/>
        </javaModelGenerator>

        <!-- 02 指定sql映射文件生成的位置 -->
        <sqlMapGenerator targetPackage="com.xlb.springbootmybits.mapper"
                         targetProject="src/main/resources/mappers">
            <!-- 是否允许子包,即targetPackage.schemaName.tableName -->
            <property name="enableSubPackages" value="false"/>
        </sqlMapGenerator>

        <!-- 03 生成XxxMapper接口 -->
        <!-- type="ANNOTATEDMAPPER",生成Java Model 和基于注解的Mapper对象 -->
        <!-- type="MIXEDMAPPER",生成基于注解的Java Model 和相应的Mapper对象 -->
        <!-- type="XMLMAPPER",生成SQLMap XML文件和独立的Mapper接口 -->
        <javaClientGenerator targetPackage="com.xlb.springbootmybits.mapper"
                             targetProject="src/main/java" type="XMLMAPPER">
            <!-- 是否在当前路径下新加一层schema,false路径com.oop.eksp.user.model, true:com.oop.eksp.user.model.[schemaName] -->
            <property name="enableSubPackages" value="false"/>
        </javaClientGenerator>

        <!-- 配置表信息 -->
        <!-- schema即为数据库名 -->
        <!-- tableName为对应的数据库表 -->
        <!-- domainObjectName是要生成的实体类 -->
        <!-- enable*ByExample是否生成 example类 -->
        <!--<table schema="" tableName="t_book" domainObjectName="Book"-->
        <!--enableCountByExample="false" enableDeleteByExample="false"-->
        <!--enableSelectByExample="false" enableUpdateByExample="false">-->
        <!--&lt;!&ndash; 忽略列,不生成bean 字段 &ndash;&gt;-->
        <!--&lt;!&ndash; <ignoreColumn column="FRED" /> &ndash;&gt;-->
        <!--&lt;!&ndash; 指定列的java数据类型 &ndash;&gt;-->
        <!--&lt;!&ndash; <columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" /> &ndash;&gt;-->
        <!--</table>-->

        <table schema="" tableName="t_mvc_book" domainObjectName="Book"
               enableCountByExample="false" enableDeleteByExample="false"
               enableSelectByExample="false" enableUpdateByExample="false">
        </table>

    </context>
</generatorConfiguration>

然后修改application.yml,改成无线包

SSM和Spring Boot_第13张图片

mybatis:
    mapper-locations: classpath:mappers/**/*xml
    type-aliases-package: com.xlb.springbootmybits.mybatis.model
server:
    port: 8080
spring:
    application:
        name: springbootmybits
    datasource:
        driver-class-name: com.mysql.jdbc.Driver
        name: defaultDataSource
        password: 123456
        url: jdbc:mysql://localhost:3306/y101?useUnicode=true&characterEncoding=UTF-8
        username: root

然后导入自动生成的插件(在pom.xml里面添加)

<plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.2</version>
                <dependencies>
                    <!--使用Mybatis-generator插件不能使用太高版本的mysql驱动 -->
                    <dependency>
                        <groupId>mysql</groupId>
                        <artifactId>mysql-connector-java</artifactId>
                        <version>5.1.44</version>
                    </dependency>
                </dependencies>
                <configuration>
                    <overwrite>true</overwrite>
                </configuration>
            </plugin>

SSM和Spring Boot_第14张图片

生成代码

SSM和Spring Boot_第15张图片

测试

创建COntroller层

BookController

package com.xlb.springbootmybits.web;

import com.xlb.springbootmybits.mapper.BookMapper;
import com.xlb.springbootmybits.model.Book;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author 波哥
 * @QQ 2212371722
 * @company 波哥集团
 * @create  2022-10-31 20:15
 */
@RestController
@RequestMapping("/mybits")
public class BookController {

    @Autowired
    private BookMapper bookMapper;

    //查询
    @GetMapping("/list")
    public Book get(Integer bid){
        return bookMapper.selectByPrimaryKey(bid);
    }

    //删除
    @DeleteMapping("/del")
    public int del(Integer bid){
        return bookMapper.deleteByPrimaryKey(bid);
    }
}

SpringbootmybitsApplication

package com.xlb.springbootmybits;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.transaction.annotation.EnableTransactionManagement;

//完成对mapper接口的扫描
@MapperScan("com.xlb.springbootmybits.mapper")
//开启事务管理
@EnableTransactionManagement
@SpringBootApplication
public class SpringbootmybitsApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringbootmybitsApplication.class, args);
    }
}

运行利用测试工具测试

启动成功
SSM和Spring Boot_第16张图片

SSM和Spring Boot_第17张图片

SSM和Spring Boot_第18张图片
SSM和Spring Boot_第19张图片

二、整合MyBatisplus

MyBatisplus简介

官网地址https://baomidou.com/

MyBatis-Plus (opens new window)(简称 MP)是一个 MyBatis (opens new window)的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。

特性

无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑
损耗小:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象操作
强大的 CRUD 操作:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 CRUD 操作,更有强大的条件构造器,满足各类使用需求
支持 Lambda 形式调用:通过 Lambda 表达式,方便的编写各类查询条件,无需再担心字段写错
支持主键自动生成:支持多达 4 种主键策略(内含分布式唯一 ID 生成器 - Sequence),可自由配置,完美解决主键问题
支持 ActiveRecord 模式:支持 ActiveRecord 形式调用,实体类只需继承 Model 类即可进行强大的 CRUD 操作
支持自定义全局通用操作:支持全局通用方法注入( Write once, use anywhere )
内置代码生成器:采用代码或者 Maven 插件可快速生成 Mapper 、 Model 、 Service 、 Controller 层代码,支持模板引擎,更有超多自定义配置等您来使用
内置分页插件:基于 MyBatis 物理分页,开发者无需关心具体操作,配置好插件之后,写分页等同于普通 List 查询
分页插件支持多种数据库:支持 MySQL、MariaDB、Oracle、DB2、H2、HSQL、SQLite、Postgre、SQLServer 等多种数据库
内置性能分析插件:可输出 SQL 语句以及其执行时间,建议开发测试时启用该功能,能快速揪出慢查询
内置全局拦截插件:提供全表 delete 、 update 操作智能分析阻断,也可自定义拦截规则,预防误操作

MyBatisplus整合

创建项目跟上面雷同,不过勾选插件不同,如下

SSM和Spring Boot_第20张图片

SSM和Spring Boot_第21张图片
SSM和Spring Boot_第22张图片

SSM和Spring Boot_第23张图片

首先添加额外的组件,用于mp的代码生成

 <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
            <version>3.4.1</version>
        </dependency>
        <dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
            <version>2.3.31</version>
        </dependency>

如果MySQL的版本很高,那么就把版本改低(操作跟上面一样)

SSM和Spring Boot_第24张图片

修改配置文件
application.yml

server:
    port: 8080
spring:
    application:
        name: springbootmp
    datasource:
        driver-class-name: com.mysql.jdbc.Driver
        name: defaultDataSource
        password: 123456
        url: jdbc:mysql://localhost:3306/y101?useUnicode=true&characterEncoding=UTF-8
        username: root
mybatis-plus:
    mapper-locations: classpath:mappers/**/*.xml
    type-aliases-package: com.xlb.springbootmp.book.model

导入MyBatisplus自动生成代码文件
需要改动配置如下

SSM和Spring Boot_第25张图片

SSM和Spring Boot_第26张图片
SSM和Spring Boot_第27张图片

MPGenerator

package com.xlb.springbootmp.mp;

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException;
import com.baomidou.mybatisplus.core.toolkit.StringPool;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.baomidou.mybatisplus.generator.AutoGenerator;
import com.baomidou.mybatisplus.generator.InjectionConfig;
import com.baomidou.mybatisplus.generator.config.*;
import com.baomidou.mybatisplus.generator.config.po.TableInfo;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

/**
 * mybatis-plus代码生成
 */
public class MPGenerator {

    /**
     * 

* 读取控制台内容 *

*/
public static String scanner(String tip) { Scanner scanner = new Scanner(System.in); StringBuilder help = new StringBuilder(); help.append("请输入" + tip); System.out.println(help.toString()); if (scanner.hasNext()) { String ipt = scanner.next(); if (StringUtils.isNotBlank(ipt)) { if ("quit".equals(ipt)) return ""; return ipt; } } throw new MybatisPlusException("请输入正确的" + tip + "!"); } public static void main(String[] args) { // 代码生成器 AutoGenerator mpg = new AutoGenerator(); // 1.全局配置 GlobalConfig gc = new GlobalConfig(); //System.getProperty("user.dir")指工作区间 如我们工作期间名是springbootmp String projectPath = System.getProperty("user.dir") + "/springbootmp"; System.out.println(projectPath); gc.setOutputDir(projectPath + "/src/main/java"); gc.setOpen(false); gc.setBaseResultMap(true);//生成BaseResultMap gc.setActiveRecord(false);// 不需要ActiveRecord特性的请改为false gc.setEnableCache(false);// XML 二级缓存 gc.setBaseResultMap(true);// XML ResultMap gc.setBaseColumnList(true);// XML columList //gc.setSwagger2(true); //实体属性 Swagger2 注解 gc.setAuthor("小谢"); // 自定义文件命名,注意 %s 会自动填充表实体属性! gc.setMapperName("%sMapper"); gc.setXmlName("%sMapper"); gc.setServiceName("%sService"); gc.setServiceImplName("%sServiceImpl"); gc.setControllerName("%sController"); gc.setIdType(IdType.AUTO); mpg.setGlobalConfig(gc); // 2.数据源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setDbType(DbType.MYSQL); dsc.setUrl("jdbc:mysql://localhost:3306/y101?useUnicode=true&characterEncoding=UTF-8"); dsc.setDriverName("com.mysql.jdbc.Driver"); dsc.setUsername("root"); dsc.setPassword("123456"); mpg.setDataSource(dsc); // 3.包配置 PackageConfig pc = new PackageConfig(); String moduleName = scanner("模块名(quit退出,表示没有模块名)"); if (StringUtils.isNotBlank(moduleName)) { pc.setModuleName(moduleName); } //设置父包 pc.setParent("com.xlb.springbootmp") .setMapper("mapper") .setService("service") .setController("controller") .setEntity("model"); mpg.setPackageInfo(pc); // 4.自定义配置 InjectionConfig cfg = new InjectionConfig() { @Override public void initMap() { // to do nothing } }; // 如果模板引擎是 freemarker String templatePath = "/templates/mapper.xml.ftl"; // 自定义输出配置 List<FileOutConfig> focList = new ArrayList<>(); // 自定义配置会被优先输出 focList.add(new FileOutConfig(templatePath) { @Override public String outputFile(TableInfo tableInfo) { // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!! if (StringUtils.isNotBlank(pc.getModuleName())) { return projectPath + "/src/main/resources/mappers/" + pc.getModuleName() + "/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML; } else { return projectPath + "/src/main/resources/mappers/" + tableInfo.getEntityName() + "Mapper" + StringPool.DOT_XML; } } }); cfg.setFileOutConfigList(focList); mpg.setCfg(cfg); // 配置模板 TemplateConfig templateConfig = new TemplateConfig(); templateConfig.setXml(null); mpg.setTemplate(templateConfig); // 5.策略配置 StrategyConfig strategy = new StrategyConfig(); // 表名生成策略(下划线转驼峰命名) strategy.setNaming(NamingStrategy.underline_to_camel); // 列名生成策略(下划线转驼峰命名) strategy.setColumnNaming(NamingStrategy.underline_to_camel); // 是否启动Lombok配置 strategy.setEntityLombokModel(true); // 是否启动REST风格配置 strategy.setRestControllerStyle(true); // 自定义实体父类strategy.setSuperEntityClass("com.baomidou.mybatisplus.extension.activerecord.Model"); // 自定义service父接口strategy.setSuperServiceClass("com.baomidou.mybatisplus.extension.service.IService"); // 自定义service实现类strategy.setSuperServiceImplClass("com.baomidou.mybatisplus.extension.service.impl.ServiceImpl"); // 自定义mapper接口strategy.setSuperMapperClass("com.baomidou.mybatisplus.core.mapper.BaseMapper"); strategy.setSuperEntityColumns("id"); // 写于父类中的公共字段plus strategy.setSuperEntityColumns("id"); strategy.setInclude(scanner("表名,多个英文逗号分割").split(",")); strategy.setControllerMappingHyphenStyle(true); //表名前缀(可变参数):“t_”或”“t_模块名”,例如:t_user或t_sys_user strategy.setTablePrefix("t_", "t_sys_"); //strategy.setTablePrefix(scanner("请输入表前缀")); mpg.setStrategy(strategy); mpg.setTemplateEngine(new FreemarkerTemplateEngine()); // 执行 mpg.execute(); } }

一定不要忘记创建mappers文件夹

SSM和Spring Boot_第28张图片

然后运行MPGenerator类的main的方法

SSM和Spring Boot_第29张图片
SSM和Spring Boot_第30张图片
SSM和Spring Boot_第31张图片

代码生成成功

SSM和Spring Boot_第32张图片

其中里面是没有sql方法和对于的接口类方法等,因为这些基本的增删改查已经别一个接口封装好了,自动继承了,所以基本的增删改查都可以用

测试

MvcBookController

package com.xlb.springbootmp.book.controller;


import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.xlb.springbootmp.book.model.MvcBook;
import com.xlb.springbootmp.book.service.MvcBookService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

import java.awt.print.Book;
import java.util.List;

/**
 * 

* 前端控制器 *

* * @author 小谢 * @since 2022-11-01 */
@RestController @RequestMapping("/book") public class MvcBookController { @Autowired private MvcBookService mvcBookService; //查询单个 @GetMapping("/list") public List<MvcBook> list(){ return mvcBookService.list(); } //按条件查询 @GetMapping("/listByCondition") public List<MvcBook> listByCondition(MvcBook mvcBook){ QueryWrapper qw = new QueryWrapper(); //key代表数据库自段 value代表查询的值 like代表模糊查询 qw.like("bname", mvcBook.getBname()); return mvcBookService.list(qw); } //查询单个 @GetMapping("/get") public MvcBook get(MvcBook mvcBook){ return mvcBookService.getById(mvcBook.getBid()); } //增加 @PutMapping("/add") public boolean add(MvcBook mvcBook){ return mvcBookService.save(mvcBook); } //删除 @DeleteMapping("/del") public boolean del(MvcBook mvcBook){ return mvcBookService.removeById(mvcBook.getBid()); } //修改 @PostMapping("/edit") public boolean edit(MvcBook mvcBook){ return mvcBookService.saveOrUpdate(mvcBook); } }

SpringbootmpApplication

package com.xlb.springbootmp;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.transaction.annotation.EnableTransactionManagement;

@MapperScan("com.xlb.springbootmp.book.mapper")
@EnableTransactionManagement
@SpringBootApplication
public class SpringbootmpApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringbootmpApplication.class, args);
    }

}

利用工具类进行测试

查询所有
SSM和Spring Boot_第33张图片

带条件查询

SSM和Spring Boot_第34张图片

查询单个
SSM和Spring Boot_第35张图片

修改
SSM和Spring Boot_第36张图片
SSM和Spring Boot_第37张图片

删除
SSM和Spring Boot_第38张图片
SSM和Spring Boot_第39张图片

增加暂时还有一点小问题,博主解决后会重新跟新

编写连表查询

MvcBookMapper.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="com.xlb.springbootmp.book.mapper.MvcBookMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.xlb.springbootmp.book.model.MvcBook">
        <id column="bid" property="bid" />
        <result column="bname" property="bname" />
        <result column="price" property="price" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        bid, bname, price
    </sql>

    <select id="queryUserRole" parameterType="java.util.Map" resultType="java.util.Map">
        SELECT u.username,r.rolename FROM t_shiro_user u,t_shiro_user_role ur,t_shiro_role r
        where u.userid = ur.userid and ur.roleid = r.roleid
        <if test="username != null and username != ''">
            and u.username = #{username}
        </if>
    </select>

</mapper>

MvcBookMapper

package com.xlb.springbootmp.book.mapper;

import com.xlb.springbootmp.book.model.MvcBook;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import java.util.List;
import java.util.Map;

/**
 * 

* Mapper 接口 *

* * @author lky * @since 2022-11-01 */
public interface MvcBookMapper extends BaseMapper<MvcBook> { List<Map> queryUserRole(Map map); }

MvcBookService

package com.xlb.springbootmp.book.service;

import com.xlb.springbootmp.book.model.MvcBook;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springframework.stereotype.Repository;

import java.util.List;
import java.util.Map;

/**
 * 

* 服务类 *

* * @author lky * @since 2022-11-01 */
@Repository public interface MvcBookService extends IService<MvcBook> { List<Map> queryUserRole(Map map); }

MvcBookServiceImpl

package com.xlb.springbootmp.book.service.impl;

import com.xlb.springbootmp.book.model.MvcBook;
import com.xlb.springbootmp.book.mapper.MvcBookMapper;
import com.xlb.springbootmp.book.service.MvcBookService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;
import java.util.Map;

/**
 * 

* 服务实现类 *

* * @author lky * @since 2022-11-01 */
@Service public class MvcBookServiceImpl extends ServiceImpl<MvcBookMapper, MvcBook> implements MvcBookService { @Autowired private MvcBookMapper bookMapper; public List<Map> queryUserRole(Map map){ return bookMapper.queryUserRole(map); } }

MvcBookController

// 连表查询
    @GetMapping("/userRole")
    public List<Map> userRole(String uname){
        Map map = new HashMap();
        map.put("username",uname);
        List<Map> maps = mvcBookService.queryUserRole(map);
        return maps;
    }

测试
SSM和Spring Boot_第40张图片
SSM和Spring Boot_第41张图片
SSM和Spring Boot_第42张图片

你可能感兴趣的:(Spring,Boot,spring,boot,mybatis,java)