使用Mybatis的时候,Mybatis根据数据库的字段找到对应实体类的属性,通过set方法对属性进行注入。 
我们可以对实体类的set方法进行测试,测试如下: 

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_hibernate

执行结果如下:

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_mybatis_02

说明:Mybatis会根据相同的属性和字段名通过set方法进行注入

那如果实体类的属性名和数据库的字段名不相同呢?

我们改动实体类的属性名,如下: 

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_mysql_03

跑程序结果如下:

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_数据库_04

可以发现,没有通过set方法进行注入,而且user对象的userName的值为NULL,说明Mybatis默认下的确是通过相同的字段名和属性名进行注入。 
那如果我们不想使用和数据库相同的字段名作为实体属性名该怎么做呢?

方法一:通过修改sql语句

修改映射文件中的sql语句: 

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_数据库_05

方法二:添加关联映射

在映射文件中加入关联映射,如下: 

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_数据库_06

注意: 

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_数据库_07

注意:

如果使用的是字段和实体单获取模式,在实体数据 #{username} 时  请对应好实体字段

测试结果如下:

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_数据库_08

org.apache.ibatis.reflection.ReflectionException: There is no getter for propert_mysql_09