摘要:定義類(lèi)有兩種定義查詢結(jié)果到類(lèi)的映射關(guān)系的方式,一種是通過(guò)文件定義,一種是通過(guò)定義,這里使用第二種方法。
定義mapping類(lèi)
MyBatis 有兩種定義查詢結(jié)果到 Java 類(lèi)的映射關(guān)系的方式,一種是通過(guò)xml文件定義,一種是通過(guò)Java annonation 定義,這里使用第二種方法。
現(xiàn)在我們有一張mysql的表定義如下:
CREATE TABLE `MY_BATIS_TEST` ( `id` varchar(255) NOT NULL DEFAULT "", `url` varchar(255) DEFAULT NULL )
首先定義table一條數(shù)據(jù)在Java中對(duì)應(yīng)的class
public class Redord { public String url; }
定義sql查詢到Java class 結(jié)果集合的映射:
public interface SimpleMapper { @Select("select url from testdb.MY_BATIS_TEST limit 1;") Redord selectOneRecord(); @Select("select url from testdb.MY_BATIS_TEST;") Set初始化并注冊(cè)mapping類(lèi)selectRecords(); @Select("select url from testdb.MY_BATIS_TEST where id=#{id};") Record selectRecordByID(int id); }
Properties properties = new Properties(); properties.setProperty("driver", "com.mysql.jdbc.Driver"); properties.setProperty("url", "jdbc:mysql://127.0.0.1:3306/testdb"); properties.setProperty("username", "the_user_name"); properties.setProperty("password", "the_password"); PooledDataSourceFactory pooledDataSourceFactory = new PooledDataSourceFactory(); pooledDataSourceFactory.setProperties(properties); DataSource dataSource = pooledDataSourceFactory.getDataSource(); Environment environment = new Environment("development", new JdbcTransactionFactory(), dataSource); Configuration configuration = new Configuration(environment); configuration.addMapper(SimpleMapper.class); //注冊(cè)mapping類(lèi) SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(configuration);從mysql中查詢數(shù)據(jù)
SqlSession session = sqlSessionFactory.openSession(); try{ PluginMapper mapper = session.getMapper(PluginMapper.class); Plugin pl = mapper.selectPluginsByID(1000); System.out.println(pl.url); } finally { session.close(); }全局唯一以及線程安全
SqlSessionFactory 可以在整個(gè)app的生命周期中只創(chuàng)建一次,SqlSession需要在每次執(zhí)行sql的函數(shù)中創(chuàng)建一次并且使用后需要進(jìn)行關(guān)閉:
SqlSession session = sqlSessionFactory.openSession(); try { // do work } finally { session.close(); }
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/17578.html
摘要:提供了四個(gè)主要的每一個(gè)都有一個(gè)可選的以及可選的其中要和中的方法簽名相同。 mybatis提供了四個(gè)主要的statement: insert select update delete 每一個(gè)statement都有一個(gè)id,可選的parametertype 以及可選的resultMap,其中statement要和mapper interface中的方法簽名相同。調(diào)用方式: ...
摘要:定義類(lèi)有兩種定義查詢結(jié)果到類(lèi)的映射關(guān)系的方式,一種是通過(guò)文件定義,一種是通過(guò)定義,這里使用第二種方法。 定義mapping類(lèi) MyBatis 有兩種定義查詢結(jié)果到 Java 類(lèi)的映射關(guān)系的方式,一種是通過(guò)xml文件定義,一種是通過(guò)Java annonation 定義,這里使用第二種方法。現(xiàn)在我們有一張mysql的表定義如下: CREATE TABLE `MY_BATIS_TEST` (...
摘要:功能將查詢結(jié)果映射為實(shí)力對(duì)象。屬性標(biāo)簽的標(biāo)識(shí)返回值的全限定類(lèi)名屬性設(shè)為則自動(dòng)查找與字段名小寫(xiě)同名的屬性名,并調(diào)用方法設(shè)為則需要在內(nèi)明確映射關(guān)系才會(huì)調(diào)用對(duì)應(yīng)的方法。 ResultMap功能:將select statement查詢結(jié)果映射為java實(shí)力對(duì)象。 RestultMap屬性: id:resultmap標(biāo)簽的標(biāo)識(shí); type:返回值的全限定類(lèi)名; autoMapping屬性:設(shè)為t...
摘要:從使用到原理學(xué)習(xí)線程池關(guān)于線程池的使用,及原理分析分析角度新穎面向切面編程的基本用法基于注解的實(shí)現(xiàn)在軟件開(kāi)發(fā)中,分散于應(yīng)用中多出的功能被稱(chēng)為橫切關(guān)注點(diǎn)如事務(wù)安全緩存等。 Java 程序媛手把手教你設(shè)計(jì)模式中的撩妹神技 -- 上篇 遇一人白首,擇一城終老,是多么美好的人生境界,她和他歷經(jīng)風(fēng)雨慢慢變老,回首走過(guò)的點(diǎn)點(diǎn)滴滴,依然清楚的記得當(dāng)初愛(ài)情萌芽的模樣…… Java 進(jìn)階面試問(wèn)題列表 -...
閱讀 3421·2021-10-20 13:49
閱讀 2793·2021-09-29 09:34
閱讀 3691·2021-09-01 11:29
閱讀 3081·2019-08-30 11:01
閱讀 838·2019-08-29 17:10
閱讀 867·2019-08-29 12:48
閱讀 2777·2019-08-29 12:40
閱讀 1348·2019-08-29 12:30