mybatis-全局配置文件-mybatis-config.xml- typeAliases-5

为类起别名,如果觉得
EmployeeMapper.xml,resultType写全类名过长的话:
但是推荐写全类名

namespace="com.stayreal.mybatis.EmployeeMapper">
    <select id="getEmpById" resultType="com.stayreal.mybatis.Employee">
        select * from tbl_employee where id = #{id}
    select>

三种方式

mybatis-config.xml

<typeAliases>
        
        
        
        
        <package name="com.stayreal.mybatis"/>
        
        
    typeAliases>

你可能感兴趣的:(mybatis)