這篇文章將為大家詳細(xì)講解有關(guān)Java項(xiàng)目怎么利用ibatis進(jìn)行搭建,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
成都創(chuàng)新互聯(lián)公司的客戶來(lái)自各行各業(yè),為了共同目標(biāo),我們?cè)诠ぷ魃厦芮信浜希瑥膭?chuàng)業(yè)型小企業(yè)到企事業(yè)單位,感謝他們對(duì)我們的要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。專業(yè)領(lǐng)域包括網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、電商網(wǎng)站開(kāi)發(fā)、微信營(yíng)銷(xiāo)、系統(tǒng)平臺(tái)開(kāi)發(fā)。
IBATIS簡(jiǎn)介
ibatis是 Apache的開(kāi)源項(xiàng)目,一個(gè)ORM 解決方案,ibatis最大的特點(diǎn)就是小巧,上手很快。
使用 ibatis提供的ORM機(jī)制,對(duì)業(yè)務(wù)邏輯實(shí)現(xiàn)人員而言,面對(duì)的是純粹的Java對(duì)象,這一層與通過(guò)Hibernate 實(shí)現(xiàn)ORM而言是基本一致的。
iBatis是一個(gè)基于SQL映射支持Java和·NET的持久層框架,相對(duì)Hibernate和ApacheOJB等“一站式”O(jiān)RM解決方案而言,iBatis 是一種“半自動(dòng)化”的ORM實(shí)現(xiàn)。
一、JAR包依賴
ibatis-2.3.4.726.jar
MySQL-connector-java-5.0.8-bin.jar
二、SqlMap.properties
driver=com.mysql.jdbc.Driver url=jdbc:mysql://127.0.0.1:3306/test username=root password=root
三、SqlMapConfig.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-config-2.dtd"> <sqlMapConfig> <!-- 引用JDBC屬性的配置文件 --> <properties resource="com/ligang/SqlMap.properties"/> <!-- 使用JDBC的事務(wù)管理 --> <transactionManager type="JDBC"> <!-- 數(shù)據(jù)源 --> <dataSource type="SIMPLE"> <property name="JDBC.Driver" value="${driver}"/> <property name="JDBC.ConnectionURL" value="${url}"/> <property name="JDBC.Username" value="${username}"/> <property name="JDBC.Password" value="${password}"/> </dataSource> </transactionManager> <!-- 這里可以寫(xiě)多個(gè)實(shí)體的映射文件 --> <sqlMap resource="com/ligang/Student.xml"/> </sqlMapConfig>
四、Student.xml
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd"> <sqlMap> <!-- 通過(guò)typeAlias使得我們?cè)谙旅媸褂肧tudent實(shí)體類的時(shí)候不需要寫(xiě)包名 --> <typeAlias alias="Student" type="com.ligang.Student"/> <!-- id表示select里的sql語(yǔ)句,resultClass表示返回結(jié)果的類型 --> <select id="findAll" resultClass="Student"> select * from student </select> <!-- parameterClass表示參數(shù)的內(nèi)容 --> <select id="findByID" parameterClass="String" resultClass="Student"> select * from student where id = #id# </select> <insert id="insertStudent" parameterClass="Student"> insert into Student(id,name,age,address) values(#id#,#name#,#age#,#address#) <!-- 返回自動(dòng)增長(zhǎng)值 --> <selectKey resultClass="String" keyProperty="id"> select @@identity as inserted </selectKey> </insert> <delete id="deleteStudentByID" parameterClass="String"> delete from student where id = #id# </delete> <delete id="deleteStudent" parameterClass="Student"> delete from Student where id = #id# </delete> <update id="updateStudent" parameterClass="Student"> update student set name=#name#,age=#age#,address=#address# where id = #id# </update> <!-- 模糊查詢,使用$代替#。此種方法就是去掉了類型檢查,使用字符串連接,不過(guò)可能會(huì)有sql注入風(fēng)險(xiǎn)--> <select id="selectByLike" parameterClass="String" resultClass="Student"> select * from student where name like '%$name$%' </select> <!-- 多條件組合查詢 --> <!-- 方法一(對(duì)象構(gòu)造查詢參數(shù)) --> <!-- 項(xiàng)目中在寫(xiě)ibatis中的sql語(yǔ)句時(shí),where user_id in (#user_id_list# ),運(yùn)行時(shí)總是不行,這里不該用#,而應(yīng)該用$,區(qū)別如下: 1.#是把傳入的數(shù)據(jù)當(dāng)作字符串,如#user_id_list#傳入的是1,2,則sql語(yǔ)句生成是這樣,in ('1,2') ,當(dāng)然不可以 2.$傳入的數(shù)據(jù)直接生成在sql里,如#user_id_list#傳入的是1,2,則sql語(yǔ)句生成是這樣,in(1,2) 這就對(duì)了. 3.#方式能夠很大程度防止sql注入. 4.$方式無(wú)法方式sql注入. 5.$方式一般用于傳入數(shù)據(jù)庫(kù)對(duì)象.例如傳入表名. 6.一般能用#的就別用$. 直觀的說(shuō) #str# 出來(lái)的效果是 'str' $str$ 出來(lái)的效果是 str 另外 ##只能用在特定的幾個(gè)地方 $$可以用在任何地方 比如 order by $str$ 你甚至可以直接寫(xiě) $str$ 把 order by 這個(gè)字串放在str里傳進(jìn)來(lái) --> <select id="findByCon1" parameterClass="Student" resultClass="Student"> select * from student where name like '%$name$%' and age >= #age# </select> <!-- 方法二(map封裝查詢參數(shù)) --> <parameterMap class="java.util.HashMap" id="paramMap"> <parameter property="name"/> <parameter property="age"/> </parameterMap> <select id="findByCon2" parameterMap="paramMap" resultClass="Student"> select * from student where name like ? and age >= ? </select> </sqlMap>
五、JAVA代碼
實(shí)體類:略
Dao:略
DaoImpl:
package com.ligang; import java.io.IOException; import java.io.Reader; import java.sql.SQLException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.ibatis.common.resources.Resources; import com.ibatis.sqlmap.client.SqlMapClient; import com.ibatis.sqlmap.client.SqlMapClientBuilder; public class StudentDaoImpl implements StudentDao { public static SqlMapClient sqlMapClient = null; static{ try { Reader reader = Resources.getResourceAsReader("com/ligang/SqlMapConfig.xml"); sqlMapClient = SqlMapClientBuilder.buildSqlMapClient(reader); } catch (IOException e) { e.printStackTrace(); } } public List<Student> findAll() { List<Student> list = null; try { list = sqlMapClient.queryForList("findAll"); } catch (SQLException e) { e.printStackTrace(); } return list; } public Student findByID(String id){ Student student = null; try { student = (Student) sqlMapClient.queryForObject("findByID", id); } catch (SQLException e) { e.printStackTrace(); } return student; } public void addStudent(Student student){ try { sqlMapClient.insert("insertStudent",student); } catch (SQLException e) { e.printStackTrace(); } } public void deleteStudentByID(String id){ try { sqlMapClient.delete("deleteStudentByID",id); } catch (SQLException e) { e.printStackTrace(); } } public void deleteStudent(Student student){ try { sqlMapClient.delete("deleteStudent",student); } catch (SQLException e) { e.printStackTrace(); } } public void updateStudent(Student student){ try { sqlMapClient.update("updateStudent", student); } catch (SQLException e) { e.printStackTrace(); } } public List<Student> findByCon(String name){ List<Student> stuList = new ArrayList<Student>(); try { stuList = sqlMapClient.queryForList("selectByLike",name); } catch (SQLException e) { e.printStackTrace(); } return stuList; } public List<Student> findByCon(Student student){ List<Student> stuList = new ArrayList<Student>(); try { stuList = sqlMapClient.queryForList("findByCon1",student); } catch (SQLException e) { e.printStackTrace(); } return stuList; } public List<Student> findByCon(Map map){ List<Student> stuList = new ArrayList<Student>(); try { stuList = sqlMapClient.queryForList("findByCon2",map); } catch (SQLException e) { e.printStackTrace(); } return stuList; } }
關(guān)于Java項(xiàng)目怎么利用ibatis進(jìn)行搭建就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
分享名稱:Java項(xiàng)目怎么利用ibatis進(jìn)行搭建
URL標(biāo)題:http://www.rwnh.cn/article34/jdccpe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、標(biāo)簽優(yōu)化、網(wǎng)站排名、網(wǎng)站維護(hù)、品牌網(wǎng)站建設(shè)、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)