springboot使用Mybatis-Generator自动生成Dao、Model、Mapping相关文件

第一步:在pom.xml配置如下


        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    -Dfile.encoding=UTF-8
                
            

            
                org.mybatis.generator
                mybatis-generator-maven-plugin
                1.3.2
                
                    ${basedir}/src/main/resources/generator/generatorConfig.xml
                    true
                    true
                
                
                    
                        com.oracle
                        ojdbc8
                        12.1.0.2
                    
                    
                        tk.mybatis
                        mapper
                        3.3.9
                    
                
            

        
    

第二步:配置generatorConfig.xml文件






    
    
    
        
        

        
            
        

        
        

        

        

        

        
        
        

第三步:根据下图跑程序

springboot使用Mybatis-Generator自动生成Dao、Model、Mapping相关文件_第1张图片

你可能感兴趣的:(工具类)