|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<!DOCTYPE generatorConfiguration
|
|
|
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
|
|
|
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
|
|
|
<!--
|
|
|
MyBatis Generator配置文件
|
|
|
功能:自动生成数据库访问层代码,包括实体类、Mapper接口和XML映射文件
|
|
|
适用:酒店客房管理系统
|
|
|
-->
|
|
|
<generatorConfiguration>
|
|
|
<!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-
|
|
|
作用:指定MySQL数据库驱动的位置,用于连接数据库
|
|
|
location:本地Maven仓库中MySQL数据库驱动JAR包的路径->
|
|
|
|
|
|
<classPathEntry location="C:\Users\14831\.m2\repository\mysql\mysql-connector-java\8.0.11\mysql-connector-java-8.0.11.jar"/>
|
|
|
<context id="DB2Tables" targetRuntime="MyBatis3">
|
|
|
<commentGenerator>
|
|
|
<property name="suppressDate" value="true"/>
|
|
|
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
|
|
|
<property name="suppressAllComments" value="true"/>
|
|
|
</commentGenerator>
|
|
|
<!--数据库链接URL,用户名、密码 -->
|
|
|
<jdbcConnection driverClass="com.mysql.cj.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3306/jiudianmanage?useSSL=false&serverTimezone=Asia/Shanghai&nullCatalogMeansCurrent=true&allowPublicKeyRetrieval=true" userId="root" password="123456">
|
|
|
</jdbcConnection>
|
|
|
<javaTypeResolver>
|
|
|
<property name="forceBigDecimals" value="false"/>
|
|
|
</javaTypeResolver>
|
|
|
<!-- 生成模型的包名和位置-->
|
|
|
<javaModelGenerator targetPackage="com.jiudian.manage.model" targetProject="src/main/java">
|
|
|
<property name="enableSubPackages" value="true"/>
|
|
|
<property name="trimStrings" value="true"/>
|
|
|
</javaModelGenerator>
|
|
|
<!-- 生成映射文件的包名和位置-->
|
|
|
<sqlMapGenerator targetPackage="mappers" targetProject="src/main/resources">
|
|
|
<property name="enableSubPackages" value="true"/>
|
|
|
</sqlMapGenerator>
|
|
|
<!-- 生成DAO的包名和位置-->
|
|
|
<javaClientGenerator type="XMLMAPPER" targetPackage="com.jiudian.manage.mapper" targetProject="src/main/java">
|
|
|
<property name="enableSubPackages" value="true"/>
|
|
|
</javaClientGenerator>
|
|
|
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
|
|
|
<!--<table tableName="user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
|
|
|
<table tableName="orderlist" domainObjectName="Order" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
|
|
|
<!--<table tableName="room" domainObjectName="Room" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
|
|
|
<!--<table tableName="config" domainObjectName="Config" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
|
|
|
|
|
|
|
|
|
</context>
|
|
|
</generatorConfiguration> |