mybatis操作步驟

2021-07-15 04:51:02 字數 1262 閱讀 1862

第一步載入相應的jar包。

第二步:編寫輸出日誌檔案:log4j.properties(可選項)

#configure logging for testing: optionally with log file

log4j.rootlogger=debug, stdout

# log4j.rootlogger=warn, stdout,logfile,\u5982\u679c\u662f\u751f\u4ea7\u73af\u5883\u5c31\u662finfo,error

第三步:編寫jdbc的配置檔案(針對資料庫的一些配置。)mybatis-config.xml配置檔案:

<?xml version="1.0"encoding="utf-8" ?>

public "- config3.0//en"

"">

<?xml version="1.0"encoding="utf-8"?>

select * from cate where id=#

第五步:需要將該sql配置檔案加入到基礎配置檔案裡(mybatis-config.xml檔案裡)

第六步,mybatis的操作程式。

操作示範**:

inputstream inputstream =resources.getresourceasstream("mybatis-config.xml");

sqlsessionfactory sqlsessionfactory =new sqlsessionfactorybuilder().build(inputstream);

//產生乙個sqlsession

sqlsession sqlsession = sqlsessionfactory.opensession();

cate cate =sqlsession.selectone("test.selectcateone", 2048);//找相應的sql語句就需要通過命名空間的方式去操作

system.out.println("分類名稱:"+cate.getname());

sqlsession.close();

Spring簡化Mybatis步驟

spring與mybatis的整合2 整合的步驟 有哪些?1 匯入jar包 mybatis的所有jar包 spring核心包 和 spring jdbc,spring tx,spring aop,spring web 包2 配置web.xml 其中版本問題 可能卡eclipse 2 配置 監聽spr...

mybatis 批量操作

foreach屬性 屬性描述 item 迴圈體中的具體物件。支援屬性的點路徑訪問,如item.age,item.info.details。具體說明 在list和陣列中是其中的物件,在map中是value。該引數為必選。collection 要做foreach的物件,作為入參時,list 物件預設用l...

Mybatis操作Oracle mysql批量插入

要做批量插入資料庫,首先得知道該資料庫對批量插入所支援的語法。每個資料庫批量插入的語法都不一樣,我介紹兩種。mysql 1 insert into table name id,name values 1,張三 2,李四 2 insert into table name id,name values ...