代码生成器
Posted tsugar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码生成器相关的知识,希望对你有一定的参考价值。
generator.xml:
<?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" >
<generatorConfiguration>
<context id="DB2Tables" targetRuntime="MyBatis3">
<!--数据库连接信息配置-->
<jdbcConnection
driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/rbac2"
userId="root"
password="root">
</jdbcConnection>
<!--javaBean的生成策略-->
<javaModelGenerator targetPackage="com.blb.dto"
targetProject=".srcmainjava">
<property name="enableSubPackages" value="true" />
<property name="trimStrings" value="true" />
</javaModelGenerator>
<!--映射文件的生成策略-->
<sqlMapGenerator targetPackage="com.blb.mapper"
targetProject=".srcmainjava">
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>
<!--dao接口java文件的生成策略-->
<javaClientGenerator type="XMLMAPPER"
targetPackage="com.blb.dao"
targetProject=".srcmainjava">
<property name="enableSubPackages" value="true" />
</javaClientGenerator>
<!--数据表与javaBean的映射-->
<table tableName="tuser" domainObjectName="User"></table>
<table tableName="trole" domainObjectName="Role"></table>
<table tableName="tmenu" domainObjectName="Menu"></table>
<table tableName="t_user_role" domainObjectName="UserRole"></table>
<table tableName="t_role_menu" domainObjectName="RoleMenu"></table>
</context>
</generatorConfiguration>
以上是关于代码生成器的主要内容,如果未能解决你的问题,请参考以下文章