标签:img 就会 tis HERE employee sel email pre java
使用mybatis时如果类属性名和数据库中的属性名不一样取值就会为null
这是不能再去改变javabean中的属性,只能改变sql语句。语句如下所示:
<select id="selectEmp" resultType="com.atguigu.mybatis.bean.Employee"> select id,last_name lastName,gender,email from tbl_employee where id= #{id} </select>
使用mybatis如果类属性名和数据库中的属性名不一样取值就会为null
标签:img 就会 tis HERE employee sel email pre java
原文地址:https://www.cnblogs.com/liaoxiaolao/p/9972028.html