得這樣子做,首先用java定義一個數據庫對應 的javabean
然後,mapper文件 中定義和數據庫關系的對應。如
<resultMap id="BaseResultMap" type="com.lin.domain.User">
<!--
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<id column="USER_ID" jdbcType="INTEGER" property="userId" />
<result column="USER_NAME" jdbcType="CHAR" property="userName" />
<result column="USER_PASSWORD" jdbcType="CHAR" property="userPassword" />
<result column="USER_EMAIL" jdbcType="CHAR" property="userEmail" />
</resultMap>
然後返回使用
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
。。。。