mybatis_plus 插件的配置

通过简单的配置就可以生成所需的实体类、mapper映射文件和接口

在src/main/resources目录下新建mybatis-generator配置文件。

mybatis_plus 插件的配置_第1张图片


xml version="1.0" encoding="UTF-8" ?>
generatorConfiguration PUBLIC
        "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >



    
    location="D:\a lenovo\DLX\src\test\java\mysql-connector-java-5.1.42.jar"/>
 id="context" targetRuntime="MyBatis3">

        name="javaFileEncoding" value="UTF-8"/>

        
            name="suppressAllComments" value="true"/>
            name="suppressDate" value="false"/>
        

        
                        driverClass="com.mysql.jdbc.Driver"
                connectionURL="jdbc:mysql://localhost:3306/mybatis"
                userId="root"
                password="root">
        
        
            name="forceBigDecimals" value="false"/>
        

     
     targetPackage="com.bean" targetProject="src/main/java">
         name="enableSubPackages" value="true"/>
         name="trimStrings" value="true"/>
     

     
     targetPackage="mapper" targetProject="src/main/resources">
         name="enableSubPackages" value="true"/>
     

     
     targetPackage="com..mapper" targetProject="src/main/java" type="XMLMAPPER">
         name="enableSubPackages" value="true"/>
     

     
     tableName="user" enableCountByExample="false" enableDeleteByExample="false" enableSelectByExample="false"
            enableUpdateByExample="false" domainObjectName="per"/>
 

注意 
  
targetPackage="com..mapper"

等目录必须存在,不然报错

mybatis_plus 插件的配置_第2张图片


经自己测试没问题,我感觉这种插件比较方便,我上回不用插件生成mybatis里的mapper接口东西不齐

mybatis_plus 插件地址  测试使用谢谢

链接:https://pan.baidu.com/s/1dGh4szZ 密码:arh6


你可能感兴趣的:(Spring,boot)