maven插件--MyBatis自动生成代码

阅读更多

参考资料:http://blog.csdn.net/sunny243788557/article/details/45166397

1.pom.xml:加入插件配置

 


    org.mybatis.generator
    mybatis-generator-maven-plugin
    1.3.2
    
        true
        true
    

 

 

2.在source的根目录下增加generatorConfig.xml

 





    
    
    
    


    
    

    

        
        

        
            
            
        

        
        

        
            
        

        
        
            
            
        

        
        
            
        

        
        
            
        


        
        
        

 

 

3.generator配置文件说明:http://blog.csdn.net/isea533/article/details/42102297

官方说明文档:http://generator.sturgeon.mopaas.com/index.html

 

 

4.执行:mybatis-generator:generate -e

 

你可能感兴趣的:(maven插件--MyBatis自动生成代码)