mybatis学习之路别名(typeAliases)mapper接口加载映射文件

登山则情满于山,观海则意溢于海。这篇文章主要讲述mybatis学习之路别名(typeAliases)mapper接口加载映射文件相关的知识,希望能为你提供帮助。
一.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


2.自定义别名
mybatis学习之路别名(typeAliases)mapper接口加载映射文件

文章图片

  < typeAliases>
< !-- < typeAlias type="com.jjt.ssm.pojo.Tuser" alias="tuser"/> -->
< package name="com.jjt.ssm.pojo"/>
< /typeAliases>

3.通过mapper接口加载映射文件
      一般的加载方法为
遵循一些规范:需要将mapper接口类名和mapper.xml映射文件名称保持一致且在同一个目录下边
上边的规范的前提是:使用mapper代理的方法
mybatis学习之路别名(typeAliases)mapper接口加载映射文件

文章图片

mybatis学习之路别名(typeAliases)mapper接口加载映射文件

文章图片

 
 
   
【mybatis学习之路别名(typeAliases)mapper接口加载映射文件】 




    推荐阅读