9.MyBatis为实体类定义别名

 

为实体类定义别名

mybatis.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeAliases>
<!--
定义别名
属性
type 执行某个实体类的全限定名
alias 指定这个实体类的别名,内容可以任意但不能重复
-->
<typeAlias type="com.node.domain.Student" alias="student"/>

<!--
为某个包下所有的类定义别名,别名默认为类名
<package name="com.node.domain"/>
-->
</typeAliases>

<environments default="mysql">
<environment id="mysql">
...
</environment>
</environments>

<mappers>
<mapper resource="com/node/dao/StudentDao.xml"/>
</mappers>
</configuration>