天天看点

MyEclipse10中mybatis generator插件的安装使用

1、下载mybatis generator插件包

2、解压插件包获取features 和 plugins 两个文件夹,将两个文件夹放入新文件夹 mybatis_generator文件夹中

3、将mybatis_generator放到MyEclipse 10\dropins这个目录下,重启MyEclipse,ok!

<?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>

<!-- 配置mysql 驱动jar包路径.用了绝对路径 -->

<classPathEntry location="E:\Workspaces\MySpring3\WebRoot\WEB-INF\lib\mysql-connector-java-5.1.22-bin.jar" />

<context id="yihaomen_mysql_tables" targetRuntime="MyBatis3">

<!-- 为了防止生成的代码中有很多注释,比较难看,加入下面的配置控制 -->

<commentGenerator>

<property name="suppressAllComments" value="true" />

<property name="suppressDate" value="true" />

</commentGenerator>

<!-- 注释控制完毕 -->

<!-- 数据库连接 -->

<jdbcConnection driverClass="com.mysql.jdbc.Driver"

connectionURL="jdbc:mysql://localhost:3306/ycnet?characterEncoding=utf8"

userId="root"

password="123">

</jdbcConnection>

<javaTypeResolver >

<property name="forceBigDecimals" value="false" />

</javaTypeResolver>

<!-- 数据表对应的model 层 targetProject内容问 项目名\src  -->

<javaModelGenerator targetPackage="com.yihaomen.model" targetProject="MySpring3\src">

<property name="enableSubPackages" value="true" />

<property name="trimStrings" value="true" />

</javaModelGenerator>

<!-- sql mapper 隐射配置文件 -->

<sqlMapGenerator targetPackage="com.yihaomen.mapper" targetProject="MySpring3\src">

<property name="enableSubPackages" value="true" />

</sqlMapGenerator>

<!-- 在ibatis2 中是dao层,但在mybatis3中,其实就是mapper接口 -->

<javaClientGenerator type="XMLMAPPER" targetPackage="com.yihaomen.inter" targetProject="MySpring3\src">

<property name="enableSubPackages" value="true" />

</javaClientGenerator>

<!-- 要对那些数据表进行生成操作,必须要有一个. -->

<table schema="account" tableName="core_account" domainObjectName="account"

enableCountByExample="false" enableUpdateByExample="false"

enableDeleteByExample="false" enableSelectByExample="false"

selectByExampleQueryId="false">

</table>

</context>

</generatorConfiguration>