All Downloads are FREE. Search and download functionalities are using the official Maven repository.

long.manager-dao.1.13.0.source-code.generatorConfig.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements. See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership. The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License. You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
-->

<!DOCTYPE generatorConfiguration
        PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
    <context id="managerMapperAutoGenerator" targetRuntime="MyBatis3">
        <plugin type="org.mybatis.generator.plugins.EqualsHashCodePlugin"/>
        <plugin type="org.mybatis.generator.plugins.SerializablePlugin"/>
        <plugin type="org.mybatis.generator.plugins.ToStringPlugin"/>
        <commentGenerator>
            <!-- Whether the comment contains the generated date, true: not generated, false: generated -->
            <!-- If the date is generated, even if one field is modified, the entire entity class will change,
            which is not conducive to version control, so set to true -->
            <property name="suppressDate" value="true"/>
            <!-- Whether to remove the automatically generated comments, true: yes: false: no -->
            <property name="suppressAllComments" value="true"/>
        </commentGenerator>

        <!-- Database connection URL, username, password -->
        <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
                connectionURL="jdbc:mysql://127.0.0.1:3306/apache_inlong_manager?nullCatalogMeansCurrent=true"
                userId="root" password="inlong">
        </jdbcConnection>

        <javaTypeResolver>
            <!-- This property is used to specify whether MyBatis Generator should
                force the use of java.math.BigDecimal for DECIMAL and NUMERIC fields, -->
            <property name="forceBigDecimals" value="false"/>
        </javaTypeResolver>

        <!-- The package name and location of the generated model -->
        <javaModelGenerator targetPackage="org.apache.inlong.manager.dao.entity"
                targetProject="src/main/java">
            <property name="enableSubPackages" value="true"/>
            <property name="trimStrings" value="true"/>
        </javaModelGenerator>

        <!-- The package name and location of the generated mapping file -->
        <sqlMapGenerator targetPackage="mappers" targetProject="src/main/resources">
            <property name="enableSubPackages" value="true"/>
        </sqlMapGenerator>

        <!-- The package name and location of the generated DAO -->
        <javaClientGenerator type="XMLMAPPER"
                targetPackage="org.apache.inlong.manager.dao.mapper"
                targetProject="src/main/java">
            <property name="enableSubPackages" value="true"/>
        </javaClientGenerator>

        <!-- Which entities to generate -->
        <table tableName="inlong_cluster_node" domainObjectName="InlongClusterNodeEntity"
            enableInsert="true" enableSelectByPrimaryKey="false"
            enableUpdateByPrimaryKey="false" enableDeleteByPrimaryKey="false"
            enableCountByExample="false" enableDeleteByExample="false"
            enableSelectByExample="false" enableUpdateByExample="false">
        </table>
        <table tableName="stream_source" domainObjectName="StreamSourceEntity"
                enableInsert="true" enableSelectByPrimaryKey="false"
                enableUpdateByPrimaryKey="false" enableDeleteByPrimaryKey="false"
                enableCountByExample="false" enableDeleteByExample="false"
                enableSelectByExample="false" enableUpdateByExample="false">
        </table>

    </context>
</generatorConfiguration>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy