国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專(zhuān)欄INFORMATION COLUMN

MyBatis 基本用法

BearyChat / 2509人閱讀

摘要:定義類(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 selectRecords();

    @Select("select url from testdb.MY_BATIS_TEST where id=#{id};")
    Record selectRecordByID(int id);
}
初始化并注冊(cè)mapping類(lèi)
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

相關(guān)文章

  • Mybatis中statement基本用法

    摘要:提供了四個(gè)主要的每一個(gè)都有一個(gè)可選的以及可選的其中要和中的方法簽名相同。 mybatis提供了四個(gè)主要的statement: insert select update delete 每一個(gè)statement都有一個(gè)id,可選的parametertype 以及可選的resultMap,其中statement要和mapper interface中的方法簽名相同。調(diào)用方式: ...

    Atom 評(píng)論0 收藏0
  • MyBatis 基本用法

    摘要:定義類(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` (...

    Snailclimb 評(píng)論0 收藏0
  • Mybatis中ResultMap基本用法

    摘要:功能將查詢結(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...

    cppowboy 評(píng)論0 收藏0
  • Java深入-框架技巧

    摘要:從使用到原理學(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)題列表 -...

    chengtao1633 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<