在第一步:新建一个工程

 

 

 下面一页,直接点finish,就行了。

第二步,编辑pom.xml文件,因为我一开始就选了mybatis和mysql,所以里面已经有了这两项依赖

我这里另外添加了一个mybatis自动生成的插件。

            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.6</version>
                <configuration>
                    <!--配置文件的位置-->
                    <configurationFile>src/main/resources/GeneratorMapper.xml</configurationFile>
                    <overwrite>true</overwrite>
                    <verbose>true</verbose>
                </configuration>
            </plugin>

 这里面有一个GeneratorMapper.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="db.properties"></properties>-->

    <!-- 指定数据库驱动的jdbc驱动jar包的位置 -->
    <classPathEntry location="c:\\mysql-connector-java-8.0.22.jar" />

    <!-- context 是逆向工程的主要配置信息 -->
    <!-- id:起个名字 -->
    <!-- targetRuntime:设置生成的文件适用于那个 mybatis 版本 -->
    <context id="default" targetRuntime="MyBatis3">

        <!--optional,旨在创建class时,对注释进行控制-->
        <commentGenerator>
            <property name="suppressDate" value="true" />
            <!-- 是否去除自动生成的注释 true:是 : false:否 -->
            <property name="suppressAllComments" value="true" />
        </commentGenerator>

        <!--jdbc的数据库连接-->
        <!--这里的"&"等同于"&"。现在一般是中国时区,所以就用Asia/Shanghai,标准时间为UTC-->
        <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
        connectionURL="jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8&amp;serverTimezone=Asia/Shanghai"
        userId="root"
        password="123">
        </jdbcConnection>

        <!--非必须,类型处理器,在数据库类型和java类型之间的转换控制-->
        <javaTypeResolver>
            <!-- 默认情况下数据库中的 decimal,bigInt 在 Java 对应是 sql 下的 BigDecimal 类 -->
            <!-- 不是 double 和 long 类型 -->
            <!-- 使用常用的基本类型代替 sql 包下的引用类型 -->
            <property name="forceBigDecimals" value="false" />
        </javaTypeResolver>

        <!-- targetPackage:生成的实体类所在的包 -->
        <!-- targetProject:生成的实体类所在的硬盘位置 -->
        <javaModelGenerator targetPackage="com.example.model"
                            targetProject="src/main/java">
            <!-- 是否允许子包 -->
            <property name="enableSubPackages" value="false" />
            <!-- 是否对modal添加构造函数 -->
            <property name="constructorBased" value="true" />
            <!-- 是否清理从数据库中查询出的字符串左右两边的空白字符 -->
            <property name="trimStrings" value="true" />
            <!-- 建立modal对象是否不可改变 即生成的modal对象不会有setter方法,只有构造方法 -->
            <property name="immutable" value="false" />
        </javaModelGenerator>

        <!-- targetPackage 和 targetProject:生成的 mapper 文件的包和位置 -->
        <sqlMapGenerator targetPackage="mappers"
                         targetProject="src/main/resources">
            <!-- 针对数据库的一个配置,是否把 schema 作为字包名 -->
            <property name="enableSubPackages" value="false" />
        </sqlMapGenerator>

        <!-- targetPackage 和 targetProject:生成的 interface 文件的包和位置 -->
        <javaClientGenerator type="XMLMAPPER"
                             targetPackage="com.example.dao"
                             targetProject="src/main/java">
            <!-- 针对 oracle 数据库的一个配置,是否把 schema 作为字包名 -->
            <property name="enableSubPackages" value="false" />
        </javaClientGenerator>
        <table tableName="userinfo" domainObjectName="Userinfo"
               enableCountByExample="false" enableUpdateByExample="false"
               enableDeleteByExample="false" enableSelectByExample="false"
               selectByExampleQueryId="false">
        </table>
        <!--<table tableName="login" domainObjectName="Login"-->
        <!--enableCountByExample="false" enableUpdateByExample="false"-->
        <!--enableDeleteByExample="false" enableSelectByExample="false"-->
        <!--selectByExampleQueryId="false">-->
        <!--</table>-->
    </context>
</generatorConfiguration>

 然后,就可以点击右边的Maven Project窗口,双击mybatis-generator就行了,如果没有看见mybatis-generator,点击窗口里左上的刷新按键就会出现了。

 第三步,修改application.properties文件。

# 应用名称
spring.application.name=spring022_mybatis
# 应用服务 WEB 访问端口
server.port=8080
#下面这些内容是为了让MyBatis映射
#指定Mybatis的Mapper文件
mybatis.mapper-locations=classpath:mappers/*.xml
#指定Mybatis的实体目录
mybatis.type-aliases-package=com.example.model
# 数据库驱动:
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
# 数据源名称
spring.datasource.name=defaultDataSource
# 数据库连接地址
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8&serverTimezone=Asia/Shanghai
# 数据库用户名&密码:
spring.datasource.username=root
spring.datasource.password=123

 然后,就可以一项项的修改java下的文件了,首先修改dao里的UserinfoMapper,这个是对表的操作接口。

我这里也修改了Userinfo类,在里面重写了toString函数。 

    @Override
    public String toString(){
        return "id="+id+",username="+username+",password="+password+".";
    }

再新建一个Service类,用来写对表的操作服务,我这里写个查询。

package com.example.Component;

import com.example.dao.UserinfoMapper;
import com.example.model.Userinfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Component
public class MyService {
    @Autowired
    UserinfoMapper userinfoMapper;
    public Userinfo getUserinfo(int id){
        return userinfoMapper.selectByPrimaryKey(id);
    }
}

然后再写一个Controller类来控制访问。

import com.example.service.MyService;
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.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class MyController {
    @Autowired
    MyService myService;
    @RequestMapping("/hehe")
    @ResponseBody
    public String show(@RequestParam("id") String id){
        return myService.getUserinfo(Integer.parseInt(id)).toString();
    }
}

最后,在主程序里加入一个注释,主要是为了让程序能扫描UserinfoMapper接口。

 

 

 这里的@MapperScan主要就是扫描的我的数据库影射接口。

package com.example;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@MapperScan(value = "com.example.dao")
@SpringBootApplication
public class Spring022MybatisApplication {

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

}

附加一个内容。当这个项目做好以后,要打包到别的地方去用了,就需要使用使用idea的package工具。

打包之前,还要再次修改pom文件,把资源定位的代码加进去,不然,打包以后,就会报错,找不到文件。

<resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                    <include>static/**</include>
                </includes>
            </resource>
        </resources>

运行程序,然后在济览器里输入http://127.0.0.1:8080/hehe?id=1就行了。后面的id=1就是传进去的参数了。然后得到页面​表示访问成功。

这里面还有一个就是要在mysql里先建一个test数据库,然后在数据库里添加一个userinfo的表。

sql语句如下:

DROP TABLE IF EXISTS `userinfo`;
CREATE TABLE `userinfo`  (
  `id` int(0) NOT NULL AUTO_INCREMENT,
  `username` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
  `password` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of userinfo
-- ----------------------------
INSERT INTO `userinfo` VALUES (1, 'a', 'aa');
INSERT INTO `userinfo` VALUES (2, 'b', 'bb');
INSERT INTO `userinfo` VALUES (3, 'c', 'cc');
INSERT INTO `userinfo` VALUES (4, 'd', 'dd');
INSERT INTO `userinfo` VALUES (5, 'e', 'ee');
INSERT INTO `userinfo` VALUES (6, 'f', 'ff');

SET FOREIGN_KEY_CHECKS = 1;