先容作为iBatis帮助东西的iBator的利用要领
当前位置:以往代写 > JAVA 教程 >先容作为iBatis帮助东西的iBator的利用要领
2019-06-14

先容作为iBatis帮助东西的iBator的利用要领

先容作为iBatis帮助东西的iBator的利用要领

今朝从实际应用来看,ORM的老大自然是Hibernate,但是iBatis因为相比拟 较直观、进修曲线相对较低,因而也赢得了不罕用户的青睐。

本文主要先容作为iBatis帮助东西的iBator的利用要领。

iBator是一个iBatis相关代码的自动生成东西。

1、安装iBator的插件

在Eclipse中,利用添加站点的要领,输入网址 http://ibatis.apache.org/tools/ibator,举办iBator的安装。

2、发起不要直接在利用iBatis的项目里直接利用iBator,推荐别的单独成立 一个项目来生成。好比,成立一个项目叫:IbatorPrj

3、右键点击IbatorPrj这个项目,假如适才的插件安装正确的话,就会看到 一个“Add iBATOR to the build path”的选项,点击一下。

4、建设iBator的设置文件。下面是我的例子,各人在实际利用的进程中,需 要按照本身的环境举办相应的修改。

主要就是数据库JDBC库的路径、数据库驱动的类名、项目标名称、包名等。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ibatorConfiguration
   PUBLIC "-//Apache Software Foundation//DTD Apache iBATIS  Ibator Configuration 1.0//EN"
   "http://ibatis.apache.org/dtd/ibator-config_1_0.dtd">
<ibatorConfiguration>
         <classPathEntry location="c:\javaLibs\MySql\mysql-connector-java- 5.0.6-bin.jar" />
         <ibatorContext id="SampleiBator"  targetRuntime="Ibatis2Java5">
                 <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                         connectionURL="jdbc:mysql://localhost/sample" userId="root"  password="admin">
                 </jdbcConnection>
                 <javaTypeResolver>
                         <property name="forceBigDecimals" value="false" />
                 </javaTypeResolver>
                 <javaModelGenerator targetPackage="com.sample"
                         targetProject="IbatorPrj\src">
                         <property name="enableSubPackages" value="true" />
                         <property name="trimStrings" value="true" />
                 </javaModelGenerator>
                 <sqlMapGenerator targetPackage="com.sample.xml"
                         targetProject="IbatorPrj\src">
                         <property name="enableSubPackages" value="true" />
                 </sqlMapGenerator>
                 <daoGenerator type="GENERIC-CI"  targetPackage="com.sample.dao"
                         targetProject="IbatorPrj\src">
                         <property name="enableSubPackages" value="true" />
                 </daoGenerator>
                 <table schema="sample" tableName="tab1"  domainObjectName="JavaBean1">
                         <property name="useActualColumnNames" value="false" />
                         <generatedKey column="ID" sqlStatement="MySql" identity="true"  />
                 </table>
         </ibatorContext>
</ibatorConfiguration>

5、设置文件生成完毕后,右键点击这个文件,选择“Generate iBatis Artifact”,然后你就在设置的文件夹下找到自动生成的文件了。

    关键字:

在线提交作业