Springboot中使用MybatisGenerator简记

0. 参考资料

MybatisGenerator细节详见官网http://www.mybatis.org/generator/

1.Maven依赖

项目下添加如下配置

            
                org.mybatis.generator
                mybatis-generator-maven-plugin
                1.3.2
                
                    src/main/resources/generatorConfig.xml
                    true
                    true
                
                
                    
                        org.mybatis.generator
                        mybatis-generator-core
                        1.3.2
                    
                
            

其中项为脚本路径

2.generatorConfig.xml的内容

注意填写自动生成Entity、Dao和mapper的位置,配置好数据库连接参数,本文连接的是PostGis数据库。




    
    

    
    
        
        
            
             
        
        
        
            
        
        
        
            
            
            
            
            
            
            
            
        
        
        
        

        
        
        

3.运行脚本

在这里运行脚本,注意运行完后注释掉table项,以免手贱重复运行。

image.png

你可能感兴趣的:(Springboot中使用MybatisGenerator简记)