Mybatis三剑客(一)在springboot中自动生成Mybatis【generator】

1、pom.xml中新增plugin

    
        org.mybatis.generator
        mybatis-generator-maven-plugin
        1.3.7

        
               true
        
    

2、新建resources/generatorConfig.xml





    
    

    

        
        

        
            
        

        
        

        
            
        

        
            
            
        

        
            
        

        
            
        

        
        
        
        
        
        
        
        
        

注意:

        context 中内容是有顺序的

        commentGenerator在前面s

3、idea中的terminal中执行mybatis自动生成命令 

mvn mybatis-generator:generate

Mybatis三剑客(一)在springboot中自动生成Mybatis【generator】_第1张图片

你可能感兴趣的:(spring,boot,mybatis,tomcat)