mybatis-generator生成コードのgeneratorConfig.xmlファイル構成


今日はmybatis-generator自動生成コードのテストをしていましたが、最後にmapper、entitiesの2層コードしか生成できないことに気づき、その後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">