sqlmapconfig.xml中配置的內容和順序如下:
properties(屬性)
settings(全域性配置引數)
typealiases(型別別名)
typehandlers(型別處理器)
objectfactory(物件工廠)
plugins(外掛程式)
environments(環境集合屬性物件)
environment(環境子屬性物件)
transactionmanager(事務管理)
datasource(資料來源)
<?xml version="1.0" encoding="utf-8" ?>
7.2 別名
mybatis支援別名:別名
對映的型別
_byte
byte
_long
long
_short
short
_int
int
_integer
int
_double
double
_float
float
_boolean
boolean
string
string
byte
byte
long
long
short
short
int
integer
integer
integer
double
double
float
float
boolean
boolean
date
date
decimal
bigdecimal
bigdecimal
bigdecimal
mapmap
自定義別名:
使用相對於類路徑的資源(現在的使用方式)
注意:此種方法要求
介面名稱和
對映檔名稱相同,且放在同乙個目錄中。
3.注意:此種方法要求
介面名稱和
對映檔名稱相同,且放在同乙個目錄中。
MyBatis基本配置
mybatis基本配置 1.導包 2.核心配置檔案 configuration.xml 目的 儲存與資料庫相關聯的那些資訊 driver url username password 檔案的內容可以參考mybatis.pdf官方文件 英文版 頁碼7頁左右地方 提供了dtd規則 文件中的跟標記 conf...
Mybatis入門基本配置
driver com.mysql.jdbc.driver url jdbc mysql localhost 3306 mydb?useunicode true characterencoding utf 8 username root password 123456方便後期改動資料,被mybatis...
2 MyBatis 全域性配置
詳情 官方中文文件 configuration根標籤 properties引入外部配置檔案 resource dbconfig.propertise properties name value settings 2.1駝峰命名法 name mapunderscoretocamelcase value...