更新時(shí)間:2021-05-25 來(lái)源:黑馬程序員 瀏覽量:
在MyBatis的映射文件中,添加操作是通過(guò)<insert>元素來(lái)實(shí)現(xiàn)的。例如,向數(shù)據(jù)庫(kù)中的t_customer表中插入一條數(shù)據(jù)可以通過(guò)如下配置來(lái)實(shí)現(xiàn)。
<!-- 添加客戶信息 -->
<insert id="addCustomer" parameterType="com.itheima.po.Customer">
insert into t_customer(username,jobs,phone)
values(#{username},#{jobs},#{phone})
</insert>
在上述配置代碼中,傳入的參數(shù)是一個(gè)Customer類型,該類型的參數(shù)對(duì)象被傳遞到語(yǔ)句中時(shí),#{username}會(huì)查找參數(shù)對(duì)象Customer的username屬性(#{jobs}和#{phone}也是一樣),并將其的屬性值傳入到SQL語(yǔ)句中。為了驗(yàn)證上述配置是否正確,下面編寫(xiě)一個(gè)測(cè)試方法來(lái)執(zhí)行添加操作。在測(cè)試類MybatisTest中,添加測(cè)試方法addCustomerTest(),其代碼如下所示。
/**
* 添加客戶
*/
@Test
public void addCustomerTest() throws Exception{
// 1、讀取配置文件
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 2、根據(jù)配置文件構(gòu)建SqlSessionFactory
SqlSessionFactory sqlSessionFactory =
new SqlSessionFactoryBuilder().build(inputStream);
// 3、通過(guò)SqlSessionFactory創(chuàng)建SqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 4、SqlSession執(zhí)行添加操作
// 4.1創(chuàng)建Customer對(duì)象,并向?qū)ο笾刑砑訑?shù)據(jù)
Customer customer = new Customer();
customer.setUsername("rose");
customer.setJobs("student");
customer.setPhone("13333533092");
// 4.2執(zhí)行SqlSession的插入方法,返回的是SQL語(yǔ)句影響的行數(shù)
int rows = sqlSession.insert("com.itheima.mapper"
+ ".CustomerMapper.addCustomer", customer);
// 4.3通過(guò)返回結(jié)果判斷插入操作是否執(zhí)行成功
if(rows > 0){
System.out.println("您成功插入了"+rows+"條數(shù)據(jù)!");
}else{
System.out.println("執(zhí)行插入操作失?。。?!");
}
// 4.4提交事務(wù)
sqlSession.commit();
// 5、關(guān)閉SqlSession
sqlSession.close();
}
在上述代碼的第4步操作中,首先創(chuàng)建了Customer對(duì)象,并向Customer對(duì)象中添加了屬性值;然后通過(guò)SqlSession對(duì)象的insert()方法執(zhí)行插入操作,并通過(guò)該操作返回的數(shù)據(jù)來(lái)判斷插入操作是否執(zhí)行成功;最后通過(guò)SqlSesseion的commit()方法提交了事務(wù),并通過(guò)close()方法關(guān)閉了SqlSession。
使用JUnit4執(zhí)行addCustomerTest()方法后,控制臺(tái)的輸出結(jié)果如圖1所示。
圖1 運(yùn)行結(jié)果
從圖1可以看到,已經(jīng)成功插入了1條數(shù)據(jù)。為了驗(yàn)證是否真的插入成功,此時(shí)查詢數(shù)據(jù)庫(kù)中的t_customer表,如圖2所示。
圖2 t_customer表
從圖2可以看出,使用MyBatis框架已成功新增了一條id為4的客戶信息。
猜你喜歡:
MyBatis框架操作數(shù)據(jù)庫(kù)有哪些步驟?
Docker與虛擬機(jī)的區(qū)別【java培訓(xùn)】