ibatise

ibatis和hibernate一样,最大的区别在于映射文件写的内容以什么为主

1,java类文件

2,类对应的xml文件Student.xml:

相当于hibernate的map文件里面写引入的实体类,和对应的操作方法,映射关系,不写对应关系。

但是hibernate的映射文件是写实体与表的完全对应关系,映射关系

3,SqlMapConfig.xml:

配置一些数据库引用文件,集成映射文件

hibernate的配置文件是配置一些数据源引用,集成映射文件,配置缓存策略

相当于hibernate的配置文件

#号是占位符,对应方法中的参数变量

name=#name#,birth=#birth#,score=#score#

Batis的优缺点:

优点:

1、减少代码量,代码简单sql代方法

2、性能增强;

3、Sql语句与程序代码分离;

4、增强了移植性;

缺点:

1、和Hibernate相比,sql需要自己写;

2、参数数量只能有一个,多个参数时不太方便;

packagecom.iflytek.entity;

importjava.sql.Date;

/**

*@authorxudongwang2011-12-31

*

*Email:[email protected]

*

*/

publicclassStudent{

//注意这里需要保证有一个无参构造方法,因为包括Hibernate在内的映射都是使用反射的,如果没有无参构造可能会出现问题

privateintid;

privateStringname;

privateDatebirth;

privatefloatscore;

publicintgetId(){

returnid;

}

publicvoidsetId(intid){

this.id=id;

}

publicStringgetName(){

returnname;

}

publicvoidsetName(Stringname){

this.name=name;

}

publicDategetBirth(){

returnbirth;

}

publicvoidsetBirth(Datebirth){

this.birth=birth;

}

publicfloatgetScore(){

returnscore;

}

publicvoidsetScore(floatscore){

this.score=score;

}

@Override

publicStringtoString(){

return"id="+id+"\tname="+name+"\tmajor="+birth+"\tscore="

+score+"\n";

}

}

Student.xml

<?xmlversion="1.0"encoding="UTF-8"?>

<!DOCTYPEsqlMapPUBLIC"-//ibatis.apache.org//DTDSQLMap2.0//EN"

"http://ibatis.apache.org/dtd/sql-map-2.dtd">

<sqlMap>

<!--通过typeAlias使得我们在下面使用Student实体类的时候不需要写包名-->

<typeAliasalias="Student"type="com.iflytek.entity.Student"/>

<!--这样以后改了sql,就不需要去改java代码了-->

<!--id表示select里的sql语句,resultClass表示返回结果的类型-->

<selectid="selectAllStudent"resultclass="Student">

select*from

tbl_student

</select>

<!--parameterClass表示参数的内容-->

<!--#表示这是一个外部调用的需要传进的参数,可以理解为占位符-->

<selectid="selectStudentById"parameterclass="int"resultclass="Student">

select*fromtbl_studentwhereid=#id#

</select>

<!--注意这里的resultClass类型,使用Student类型取决于queryForList还是queryForObject-->

<selectid="selectStudentByName"parameterclass="String"

resultclass="Student">

selectname,birth,scorefromtbl_studentwherenamelike

'%$name$%'

</select>

<insertid="addStudent"parameterclass="Student">

insertinto

tbl_student(name,birth,score)values

(#name#,#birth#,#score#)

<selectKeyresultclass="int"keyProperty="id">

select@@identityasinserted

<!--这里需要说明一下不同的数据库主键的生成,对各自的数据库有不同的方式:-->

<!--mysql:SELECTLAST_INSERT_ID()ASVALUE-->

<!--mssql:select@@IDENTITYasvalue-->

<!--oracle:SELECTSTOCKIDSEQUENCE.NEXTVALASVALUEFROMDUAL-->

<!--还有一点需要注意的是不同的数据库生产商生成主键的方式不一样,有些是预先生成(pre-generate)主键的,如Oracle和PostgreSQL。

有些是事后生成(post-generate)主键的,如MySQL和SQLServer所以如果是Oracle数据库,则需要将selectKey写在insert之前-->

</selectKey>

</insert>

<deleteid="deleteStudentById"parameterclass="int">

<!--#id#里的id可以随意取,但是上面的insert则会有影响,因为上面的name会从Student里的属性里去查找-->

<!--我们也可以这样理解,如果有#占位符,则ibatis会调用parameterClass里的属性去赋值-->

deletefromtbl_studentwhereid=#id#

</delete>

<updateid="updateStudent"parameterclass="Student">

updatetbl_studentset

name=#name#,birth=#birth#,score=#score#whereid=#id#

</update>

</sqlMap>

SqlMapConfig.xml

<?xmlversion="1.0"encoding="UTF-8"?>

<!DOCTYPEsqlMapConfigPUBLIC"-//ibatis.apache.org//DTDSQLMapConfig2.0//EN"

"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">

<sqlMapConfig>

<!--引用JDBC属性的配置文件-->

<propertiesresource="com/iflytek/entity/SqlMap.properties"/>

<!--使用JDBC的事务管理-->

<transactionManagertype="JDBC">

<!--数据源-->

<dataSourcetype="SIMPLE">

<propertyname="JDBC.Driver"value="${driver}"/>

<propertyname="JDBC.ConnectionURL"value="${url}"/>

<propertyname="JDBC.Username"value="${username}"/>

<propertyname="JDBC.Password"value="${password}"/>

</dataSource>

</transactionManager>

<!--这里可以写多个实体的映射文件-->

<sqlMapresource="com/iflytek/entity/Student.xml"/>

</sqlMapConfig>

相关推荐