逆向工程使用

generatorConfig.xml 配置文件相关信息如下

  PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">









connectionURL="jdbc:mysql://localhost:3306/jzfw" userId="root"
password="123">








targetProject=".\src\main\java">








targetProject=".\src\main\java">




targetPackage="com.ncwu.dao" targetProject=".\src\main\java">




            enableUpdateByExample="false" enableDeleteByExample="false"
            enableSelectByExample="false" selectByExampleQueryId="false">
       




java代码

public class TestMBG {  
    @Test  
    public void test1() throws Exception{  
       List warnings = new ArrayList();  
       boolean overwrite = true;  
       File configFile = new File("src/main/resources/generatorConfig.xml");  
       ConfigurationParser cp = new ConfigurationParser(warnings);  
       Configuration config = cp.parseConfiguration(configFile);  
       DefaultShellCallback callback = new DefaultShellCallback(overwrite);  
       MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);  
       myBatisGenerator.generate(null);  
    }  
}  

需要引入jar文件

  
            org.mybatis.generator  
            mybatis-generator-core  
            1.3.5  

          

               
mysql
mysql-connector-java
5.1.39

你可能感兴趣的:(java,mybatis)