生成代码在项目中使用
使用Eclipse的Generator MyBatis/iBatis Artifacts插件生成代码截图如下,此例子使用oracle库。库名mydatabase,表为aa做得测试,在接下来的讲解中都以此为例。
一. 在Eclipse中安装插件
此例子是使用link方式插件安装
1. 把mybatisGenerator.rar解压到我们指定的硬盘中,如:c:/mybatisGenerator
2. 在Eclipse的dropins目录中新建mybatisGenerator.link文件,如D:\geyouchao\eclipse4.2\dropins
mybatisGenerator.link文件内容为
- path=c:\\mybatisGenerator
3. 验证插件是否安装成功
二. 在Eclipse中创建Java项目
1. 创建java项目,如mybatis001。注:此例是使用oracle+ibatis,所以需要导入ojdbc14.jar、ibatis-2.3.0.677.jar两个jar包(若是生成mybatis,需要mybatis-3.0.6.jar;若是pg数据库,需要postgresql-9.3-1103.jdbc4.jar)
2. 在mybatis001项目src目录下,新建generatorConfig.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 >
- <classPathEntry location="F:/workspace/tomcat_yanjiu/MyBatis_Demo/WebContent/WEB-INF/lib/mysql-connector-java-5.1.20-bin.jar"/>
- <context id="me_ibatis" defaultModelType="flat" targetRuntime="Ibatis2Java5" >
- <commentGenerator>
- <property name="suppressAllComments" value="true"/>
- <property name="suppressDate" value="true"/>
- </commentGenerator>
- <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver"
- connectionURL="jdbc:oracle:thin:@127.0.0.1:1526:mydatabase"
- userId="gyc" password="abc1234" />
- <javaModelGenerator targetPackage="com.gyc.test.biz.dto"
- targetProject="mybatis001\src">
- </javaModelGenerator>
- <sqlMapGenerator targetPackage="com.gyc.test.biz.dao.sql"
- targetProject="mybatis001\src"/>
- <javaClientGenerator targetPackage="com.gyc.test.biz.dao"
- implementationPackage="com.gyc.test.biz.dao.impl"
- targetProject="mybatis001\src" type="SPRING" />
- <table tableName="aa"
- enableCountByExample="false"
- enableUpdateByExample="false"
- enableDeleteByExample="false"
- enableSelectByExample="false"
- selectByExampleQueryId="false"
- />
- </context>
- </generatorConfiguration>
3. 右键generatorConfig.xml文件,点击在菜单中点击Generator MyBatis/iBatis Artifacts(若右键菜单中没有此菜单,说明第一步骤中插件没有安装成功),自动生成4个文件。
代码生成器生成4个文件,分别是Aa.java、Aa_SqlMap.xml、AaDAO.java和AaDAOImpl.java。接下来对生成的代码简单修改就可以在我们项目框架使用了。