關於Mybatis中的幾個常用標籤

2021-10-04 10:59:00 字數 1028 閱讀 3187

1.properties

resource

="jdbcconfig.properties"

/>

properties一般都被用來引入外部配置檔案,然後讀取,當然,引入的配置檔案裡的內容一定要是按照鍵值對的形式儲存的。

下面看看怎麼讀取吧!

name

="driver"

value

="$"

/>

name

="url"

value

="$"

/>

name

="username"

value

="$"

/>

name

="password"

value

="$"

/>

對!是通過${}來讀取,當傳入key時,就可以得到相對應的value

2. typealiases

>

type

="cn.pwginfo.pojo.user"

alias

="user"

/>

type

="cn.pwginfo.pojo.student"

alias

="student"

/>

name

="cn.pwginfo.dao"

/>

typealiases

>

>

resource

="cn/pwginfo/dao/userdao.xml"

>

>

class

="cn.pwginfo.dao.userdao"

>

>

>

resource是基於配置檔案的開發

class是基於註解的開發

他們兩個寫路徑的方式都不一樣。

mybatis中的幾個注意的地方

1 首先定義乙個sql標籤,一定要定義唯一idname,age 2 然後通過id引用 select from student 這個會自動把上面的 貼過來。3.insert into t security f securitykey,f securityvalue,f merchantid,f tag...

有關於C 中DataTable的幾個常用的基本操作

1 初始化乙個datatable物件 example code datatable dt new datatable 給datatable初始化列頭資料 dt.columns.add id typeof int 主鍵編號 dt.columns.add name typeof string 姓名 dt...

關於常用的幾個單位解釋

px畫素 pixel 相對長度單位。畫素px是相對於顯示器螢幕解析度而言的 也就是說是跟物理裝置有關的 拿高清屏和普通屏來做對比就是普通螢幕的1個畫素點就是1個物理畫素點,而高清屏的1個畫素點是4個物理畫素點。em相對長度單位。相對於當前物件內文字的字型尺寸。如當前對行內文字的字型尺寸未被人為設定,...