Mybatis中别名的作用

(原创)Mybatis中别名的作用:

在mybatis-config.xml配置别名如下:


 
  
 

它的作用是让Mapper.xml中的参数找到对应类,如下面parameterType="TestTb">,如果没有配置别名,则要改为parameterType="cn.itcast.core.bean.TestTb">,

配置别名首先当然要保证pojo实体,在一个包下面如cn.itcast.core.bean,这样配置别名后,都可找到对应的参数;

 
 
  insert into test_tb
  (id,name,birthday)
  values
  (#{id},#{name},#{birthday})
 

 

(转载)问题描述

Mybatis有个代码生成工具,生成的代码里面有mapper.xml文件,mapper.xml中的sql语句会用parameterType这个属性,而这个值可能是我们自定义的对象,此时,如果没有typealiases,我们就需要为parameterType指定全路径:

你可能感兴趣的:(框架)