IDEA springboot集成mybatis 逆向工程

IDEA springboot集成mybatis 逆向工程

    • 第一步:创建springboot初始demo
    • 配置逆向工程

第一步:创建springboot初始demo

IDEA springboot集成mybatis 逆向工程_第1张图片
IDEA springboot集成mybatis 逆向工程_第2张图片至此,基于springboot集成MySQL,mybatis的web启动项目算是完成了。

ps:如果是首次建立,maven仓库没有相关依赖,可能它会花点时间去下载依赖包
创建一个application.yml文件,配置数据源等一些配置
IDEA springboot集成mybatis 逆向工程_第3张图片
启动主程序类
IDEA springboot集成mybatis 逆向工程_第4张图片

配置逆向工程

在pom.xml加入如下配置:


            
                org.mybatis.generator
                mybatis-generator-maven-plugin
                
                    
                         mysql
                         mysql-connector-java
                        5.1.27
                    
                    
                        org.mybatis.generator
                        mybatis-generator-core
                        1.3.2
                    
                
                
                    
                        Generate MyBatis Artifacts
                        package
                        
                            generate
                        
                    
                
                
                    
                    true
                    
                    false
                    
                    
                        src/main/resources/generator.xml
                
            

在source目录下新增一个generator.xml文件




    
    
    
        
            
            
        
        
        
        
        
        
            
        

        
        
            
            
            
            
        
        
        
            
            
        
        
        
            
            
        
        
        

最后IDEA springboot集成mybatis 逆向工程_第5张图片
在右侧打开maven栏IDEA springboot集成mybatis 逆向工程_第6张图片点击运行就行了

你可能感兴趣的:(逆向工程)