類型別名可為 Java 類型設(shè)置一個縮寫名字。 它僅用于 XML 配置,意在降低冗余的全限定類名書寫。例如:
<typeAliases>
<typeAlias alias="Author" type="domain.blog.Author"/>
<typeAlias alias="Blog" type="domain.blog.Blog"/>
<typeAlias alias="Comment" type="domain.blog.Comment"/>
<typeAlias alias="Post" type="domain.blog.Post"/>
<typeAlias alias="Section" type="domain.blog.Section"/>
<typeAlias alias="Tag" type="domain.blog.Tag"/>
</typeAliases>
當這樣配置時,Blog 可以用在任何使用 ?domain.blog.Blog
? 的地方。
也可以指定一個包名,MyBatis 會在包名下面搜索需要的 ?Java Bean
?,比如:
<typeAliases>
<package name="domain.blog"/>
</typeAliases>
每一個在包 ?domain.blog
? 中的 ?Java Bean
?,在沒有注解的情況下,會使用 ?Bean
的首字母小寫的非限定類名來作為它的別名。 比如 ?domain.blog.Author
? 的別名為 ?author
?;若有注解,則別名為其注解值。見下面的例子:
@Alias("author")
public class Author {
...
}
下面是一些為常見的 Java 類型內(nèi)建的類型別名。它們都是不區(qū)分大小寫的,注意,為了應(yīng)對原始類型的命名重復(fù),采取了特殊的命名風格。
別名 | 映射的類型 |
_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 |
object | Object |
map | Map |
hashmap | HashMap |
list | List |
arraylist | ArrayList |
collection | Collection |
iterator | Iterator |
更多建議: