mybatis-generator生成代码的generatorConfig.xml文件配置

今天在弄mybatis-generator自动生成代码的测试,但最后发现只能生成mapper、entities两层代码,后面又换成了mybatisplus,它可以生成mapper、entities、services、Controller层,比mybatis-generator更完善,但还是记录下mybatis-generator的配置

一、pom.xml引入相关包


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

 二、在src/main/resources下添加generatorConfig.xml文件,文件中全部内容如下,数据源部分是直接从配置文件引入的




    
    
    
    /Users/qc/.m2/repository/org/postgresql/postgresql/42.2.8/postgresql-42.2.8.jar"/>

    
    

        
            
            
            
            
        

        
        ${spring.datasource.username}" password="${spring.datasource.password}" driverClass="${spring.datasource.driverClassName}"
                        connectionURL="${spring.datasource.url}"/>

        
        
            
        

        
        com.auto.entities" targetProject="src/main/java">
            
            
        
        
        com.auto.mapper" targetProject="src/main/java">
            
        
        
        com.auto.mapper" type="ANNOTATEDMAPPER" targetProject="src/main/java">
            
        

        
        sys_user" enableCountByExample="false" enableDeleteByExample="false"
               enableSelectByExample="false" enableUpdateByExample="false">
        

你可能感兴趣的:(JavaEE-综合,JavaEE-iBatis,开发工具-综合)