11.MyBatis类型别名
MyBatis类型别名
在MyBatis中,Java的基本数据类型和包装类型等具有相应的别名。
Java类型 | MyBatis中的类型名称 |
---|---|
byte | _byte |
short | _short |
int | _int或_integer |
long | _long |
float | _float |
double | _double |
boolean | _boolean |
Java类型 | MyBatis中的类型名称 |
---|---|
String | string |
Byte | byte |
Short | short |
Integer | int或integer |
Float | float |
Double | double |
Boolean | boolean |
Date | date |
Object | object |
List | list |
ArrayList | arraylist |
Map | map |
HashMap | hashmap |
Collection | collection |
Iterator | iterator |