typeAliases
typeAliases를 이용하면 FQCN으로 쓰지 않아도 된다.
Alias |
Mapped Type |
_byte |
byte |
_long |
short |
_int |
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 |
...............................................................................................................................
출처
...............................................................................................................................
MyBatis
v. 3.2.1
User Guide
12쪽
...............................................................................................................................