在我们使用MyBatis中的select语句时,需要指定resultType的值,即查询对象的类型,该值是对象的完整类名,看起来非常的繁琐,因此MyBatis中有了别名机制。
使用步骤
在mybatis-config.xml文件中添加< typeAliases >标签
但其位置不能随便加,可以添加到< properties >标签后面,在该标签内部添加< typeAlias>标签来为指定类起别名,例如
<!--别名自己指定的-->
<typeAlias type="com.powernode.mybatis.pojo.Car" alias="aaa"/>
这种就是自己给指定的类起别名,该处别名为aaa
但我们也可以不用自己起别名,而是采用默认的别名,这里默认的是实体类的类名,不区分大小写
<!--采用默认的别名机制-->
<typeAlias type="com.powernode.mybatis.pojo.Car"/>
没有指定别名,这时该类的别名就是CAR或car或CaR
等
实战演示
<typeAliases>
<typeAlias type="com.hkd.mybatis.bean.Car"></typeAlias>
</typeAliases>
可以看出我没有指定别名
<select id="selectByBrandLike" resultType="CaR">
select
id,
car_num as carNum,
brand as Brand,
guide_price as guidePrice,
produce_time as produceTime,
car_type as carType
from t_car
where brand
<!--'%${brand}%'-->
<!--concat('%',#{brand},'%')-->
like "%"#{brand}"%"
</select>
执行测试代码(模糊查询)
@Test
public void testSelectByBrand(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
List<Car> cars = mapper.selectByBrandLike("比亚迪");
cars.forEach(car -> System.out.println(car));
sqlSession.close();
}
执行结果
可以看出可以正常执行
但如果有好多实体类,我们需要一一写出来,那也是很麻烦的,
不过MyBatis已经替我们解决了这个问题,也就是第三种起别名的方法,也是我们以后最常用的
<!--包下所有的类自动起别名。使用简名作为别名。-->
<package name="com.hkd.mybatis.pojo"/>
什么意思呢?就是我们只需要指定实体类的包名,该包名下的所有实体类就会起一个别名,别名和第二中的一样,是默认的别名。