mybatis全局配置文件-(3)-typeAliases 类型别名

类型别名是为Java 类型设置一个短的名字,可以方便我们引用某个类。

别名不区分大小写,别名需要在mybatis全局配置文件中,编写:

<!-- 3、typeAliases:别名处理器:可以为我们的java类型起别名 
			
	别名不区分大小写
-->
<typeAliases>
	<!-- 1、typeAlias:为某个java类型起别名
			type:指定要起别名的类型全类名;默认别名就是类名小写;employee
			alias:指定新的别名
	 -->
	<!-- <typeAlias type="com.atguigu.mybatis.bean.Employee" alias="emp"/> -->
		
	<!-- 2、package:为某个包下的所有类批量起别名 
			name:指定包名(为当前包以及下面所有的后代包的每一个类都起一个默认别名(类名小写),)
	-->
	<package name="com.mybatis.bean"/>
		
	<!-- 3、批量起别名的情况下,使用@Alias注解为某个类型指定新的别名 -->
</typeAliases>

别名取好了,就可以在对象映射文件中 使用了
(别名不区分大小写,映射文件的对象为:com.mybatis.bean.Employee)

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
 PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.mybatis.mapper.EmployeeMapper">
<!-- 
上面的 namespace:名称空间;指定为接口的全类名
下面的 id:唯一标识被规定为接口方法名 【public Employee getEmpById(Integer id);】
下面的 resultType:返回值类型
下面的 #{id}:从传递过来的参数中取出id值

 -->
	<select id="getEmpById" resultType="EmployEE">
	<!--  
	1、之前没有在mybatis的全局配置文件中,开启驼峰转化 setting ,
	因此执行  select * from tb1_employee where id = #{id}  时,
	那时 数据库的字段 last_name 无法直接映射 到bean 中的lastName ,
	查询结果导致数据库 last_name 无法赋值给employee bean中的lastName
	所以,employee 中的  lastName 是空值,
	所以需要在 这里的sql语句中取别名
	select id,last_name lastName,email,gender from tbl_employee where id = #{id}
	
	2、现在已经开启了驼峰转化,所以就不需要 在sql语句中 取别名了
	下面的sql语句 也可以 直接写成:select * from tb1_employee where id = #{id}
	-->
	select id,last_name,email,gender from tbl_employee where id = #{id}
	</select>
</mapper>

补充:

值得注意的是,MyBatis已经为许多常见的Java 类型内建了相应的类型别名。它们都是大小写不敏感的,我们在起别名的时候千万不要占用已有的别名。

值得注意的是,MyBatis已经为许多常见的Java 类型内建了相应的类型别名。
它们都是大小写不敏感的,我们在起别名的时候千万不要占用已有的别名。

别名       映射的类型      别名       映射的类型      别名       映射的类型
_byte      byte         byte        Byte         date         Date 
_long 	   long         long 	    Long         decimal    BigDecimal  
_short     short        short 	    Short        bigdecimal BigDecimal 
_int 	    int         int 	   Integer       object      Object 
_integer    int         integer    Integer       map 	      Map 
_double    double       double 	    Double       hashmap     HashMap 
_float     float        float 	    Float        list 	     List 
_boolean   boolean      boolean     Boolean      arraylist   ArrayList 
string     String     collection   Collection    iterator    Iterator

 

 

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments