myBatis Generator - 如何仅生成选择/更新/插入/删除 SQL?
Posted
技术标签:
【中文标题】myBatis Generator - 如何仅生成选择/更新/插入/删除 SQL?【英文标题】:myBatis Generator - how to generate only select/update/insert/delete SQLs? 【发布时间】:2011-04-14 11:49:23 【问题描述】:我的配置文件是:
<?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="context1" >
<jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@localhost:1521:xe" userId="system" password="system" ></jdbcConnection>
<javaModelGenerator targetPackage="pl.domain.model" targetProject="mailsender2" />
<sqlMapGenerator targetPackage="pl.domain.model" targetProject="mailsender2" ></sqlMapGenerator>
<javaClientGenerator targetPackage="???" targetProject="???" type="XMLMAPPER" />
<table schema="SYSTEM" tableName="user" domainObjectName="User" enableSelectByExample="false" enableDeleteByExample="false"
enableCountByExample="false" enableUpdateByExample="false" >
</table>
</context>
</generatorConfiguration>
如何只生成简单的选择/更新/插入/删除 SQL?下面没有这个?
映射器.xml
<insert id="insertSelective" parameterType="pl.domain.model.User" >
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
This element was generated on Thu Apr 14 13:40:15 CEST 2011.
-->
insert into SYSTEM.USER
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="userId != null" >
USER_ID,
</if>
<if test="created != null" >
CREATED,
</if>
<if test="firstName != null" >
FIRST_NAME,
</if>
<if test="hash != null" >
HASH,
</if>
<if test="language != null" >
LANGUAGE,
</if>
<if test="lastName != null" >
LAST_NAME,
【问题讨论】:
【参考方案1】:为了压制 cmets,你试过这个吗:
<commentGenerator>
<property name="suppressAllComments" value="true" />
</commentGenerator>
你也试过这个:
<table tableName="your_table_name_here" domainObjectName="domain_bject_name_here" enableSelectByExample="false" enableDeleteByExample="false" enableCountByExample="false" enableUpdateByExample="false" selectByExampleQueryId="false" selectByPrimaryKeyQueryId="false" modelType="flat">
</table>
【讨论】:
以上是关于myBatis Generator - 如何仅生成选择/更新/插入/删除 SQL?的主要内容,如果未能解决你的问题,请参考以下文章
Mybatis Generator 如何生成Example类
如何在idea中使用Mybatis-generator插件快速生成代码