常用的mybatis的xml的sql語句

2021-10-09 02:57:06 字數 1202 閱讀 9345

在這裡插入**片

select 字段 ,字段 as 屬性,字段 屬性,字段 from 表名

"where" suffixoverrides=

"and | or"

>

<

if test=

"屬性!=null and 屬性!='' "

>字段=

# and

<

if test=

"屬性!=null and 屬性!='' "

>字段=

# and

<

/trim>

select 字段,字段 from 表名  where id in

"id" collection=

"array" separator=

","open

="("

close

=")"

index=""

>

#<

/foreach>

insert

into 表名 (字段,字段)values (#,#

update 表名

<

set>

<

if test=

"屬性!=null"

>字段=

#, <

if test=

"屬性!=null and 屬性!='' "

>字段=

#, <

/set

>

傳入引數int ids時

<

delete id=

"delete" paramtertype=

"int"

>

delete

from 表名 where id in

"id" collection=

"array" separator=

","open

="("

close

=")"

index=""

>

#<

/foreach>

delete

from 表名 where id=

#

Mybatis的xml配置簡單優化

我們可以通過幾個簡單的方法對開發中的 進行優化,如在專案的mybatis配置檔案config.xml中 配置properties,配置setting,配置別名。以達到簡化 優化效能 便於維護的目的。配置屬性 properties 方法一 在xml中配置 方法二 在外部檔案 db.properties...

有關MyBatis的對映 XML檔案的詳細說明

1 typealiases 對po類進行別名的定義 2 全域性配置 3 對映檔案 次數對映檔案中的resulttype就不需要使用全限定類名,直接使用別名就可以了 select from user where id 2 使用完全限定路徑 輸出對映檔案的型別 1 使用要求 a 使用resulttype...

xml的常用方法

getchildnodes 包含此節點的所有子節點的nodelist getfirstchild 如果節點存在子節點,則返回第乙個子節點 getlastchild 如果節點存在子節點,返回最後乙個子節點 getnextsibling 返回在dom 樹中這個節點的下乙個兄弟節點 getprevious...