代码生成器

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>

 

以上是关于代码生成器的主要内容,如果未能解决你的问题,请参考以下文章

前端开发工具vscode如何快速生成代码片段

前端开发工具vscode如何快速生成代码片段

Apollo Codegen 没有找到生成代码的操作或片段

vscode代码片段生成vue模板

VS Code配置snippets代码片段快速生成html模板,提高前端编写效率

vs 2010代码片段