介绍作为iBatis帮忙工具的iBator的操纵办法[Java编程]
本文“介绍作为iBatis帮忙工具的iBator的操纵办法[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
目前从实际利用来看,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”,然后你就在配置的文件夹下找到自动生成的文件了.
以上是“介绍作为iBatis帮忙工具的iBator的操纵办法[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |