Idea基于maven项目创建mybatis逆向工程

Idea基于maven项目创建mybatis逆向工程

1.打开pom.xml文件,添加如下配置:



  
  org.mybatis.generator
  mybatis-generator-maven-plugin
  1.3.5
  
    
    src/main/resources/spring/Personal-GeneratorConfig.xml
    true
    true
  
  
    
      log4j
      log4j
      1.2.17
    
    
      org.mybatis
      mybatis
      3.4.1
    
    
      mysql
      mysql-connector-java
      5.1.41
    
  

2. 创建Personal-GeneratorConfig.xml配置文件,并填写如下配置:

 

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


    id="context1" targetRuntime="MyBatis3">

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

        

        driverClass="com.mysql.jdbc.Driver"
                        connectionURL="jdbc:mysql://localhost:3306/lanqianming"
                        userId="root"
                        password="root" />

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

        
        targetPackage="com.bubbles.entity"
                            targetProject="src/main/java" />

        
        targetPackage="com.bubbles.dao" targetProject="src/main/java" />

        
        schema="" tableName="user" enableCountByExample="false" enableSelectByExample="false"
               enableDeleteByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" >
        


3. 点击菜单Run->Edit Configuration,然后在弹出窗体的左上角,点击+->maven,会出现下面窗体,指令:mybatis-generator:generate -e   然后点击apply,并确定

 Idea基于maven项目创建mybatis逆向工程_第1张图片

 

4. 最后run刚才新建的那个maven即可,最后生成的结构如下

 Idea基于maven项目创建mybatis逆向工程_第2张图片


你可能感兴趣的:(开发工具使用)