美文网首页程序员Spring-BootJava架构技术进阶
Java进阶笔记——Spring Boot 整合 Mybatis

Java进阶笔记——Spring Boot 整合 Mybatis

作者: 程序员北游 | 来源:发表于2019-03-03 22:23 被阅读88次

    MyBatis 是一款优秀的持久层框架,它支持定制化 SQL、存储过程以及高级映射。MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集。这里介绍 Spring Boot 整合 Mybatis 的步骤,数据库选用 MYSQL

    创建 Spring Boot 项目

    修改 pom.xml

    修改 Spring Boot 配置文件

    这里使用 yml 格式的配置文件,将 application.properties 改名为 application.yml,下面配置请根据自己的需求而修改

    Spring Boot 会自动加载 application.yml 相关配置,数据源就会自动注入到s qlSessionFactory 中,sqlSessionFactory 会自动注入到 Mapper 中。

    使用插件快速生成代码

    配置 pom.xml

    添加 Mybatis-generator 插件


    编写配置文件 generatorConfig.xml

    在 IntelliJ IDEA 开发环境下,此文件需要放在 resource 根目录下,mybatis generator 默认加载此目录的配置文件,以下文件需要根据自己的情况进行配置

    <?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>

        <!--数据库驱动jar -->

        <classPathEntry

            location="D:\.m2\repository\mysql\mysql-connector-java\5.1.33\mysql-connector-java-5.1.33.jar" />

        <context id="Tables" targetRuntime="MyBatis3">

            <!--去除注释 -->

            <commentGenerator>

                <property name="suppressDate" value="true"/>

                <property name="suppressAllComments" value="true" />

            </commentGenerator>

            <!--数据库连接 -->

            <jdbcConnection driverClass="com.mysql.jdbc.Driver"

                connectionURL="jdbc:mysql://129.1.18.18:3306/ssm_demo" userId="root"

                password="root">

            </jdbcConnection>

            <!--默认false Java type resolver will always use java.math.BigDecimal if

                the database column is of type DECIMAL or NUMERIC. -->

            <javaTypeResolver>

                <property name="forceBigDecimals" value="false" />

            </javaTypeResolver>

            <!--生成实体类 指定包名 以及生成的地址 (可以自定义地址,但是路径不存在不会自动创建 使用Maven生成在target目录下,会自动创建) -->

            <javaModelGenerator targetPackage="com.myapp.api.entity"

                                targetProject="src/main/java">

                <property name="enableSubPackages" value="true" />

                <property name="trimStrings" value="true" />

            </javaModelGenerator>

            <!--生成SQLMAP文件 -->

            <sqlMapGenerator targetPackage="mapping"

                            targetProject="src/main/resources">

                <property name="enableSubPackages" value="false" />

            </sqlMapGenerator>

            <!-- 生成DAO的包名和位置-->

            <!-- XMLMAPPER生成xml映射文件, ANNOTATEDMAPPER 生成的 dao 采用注解来写sql -->

            <javaClientGenerator type="ANNOTATEDMAPPER"

                                targetPackage="com.myapp.api.mapper"

                                targetProject="src/main/java">

                <property name="enableSubPackages" value="false" />

            </javaClientGenerator>

            <!--对应数据库表 mysql可以加入主键自增 字段命名 忽略某字段等 -->

            <table tableName="" domainObjectName=""

                enableCountByExample="false" enableUpdateByExample="false"

                enableDeleteByExample="false" enableSelectByExample="false"

                selectByExampleQueryId="false" />

        </context>

    </generatorConfiguration>


    在 IntelliJ IDEA 配置

    配置命令 mybatis-generator:generate -e

    配置好之后点击旁边的运行按钮

    当然也可以在 plugins 中找到 mybatis-generator,双击运行或右击运行都可

    相关文章

      网友评论

        本文标题:Java进阶笔记——Spring Boot 整合 Mybatis

        本文链接:https://www.haomeiwen.com/subject/emcvuqtx.html