Message类里面id是String类型的,数据库里ID是int型的, mybatis能自动转换格式进行填充?
<resultMap type="com.force4us.bean.Message" id="MessageResult"> <id column="ID" jdbcType="INTEGER" property="id"/> <result column="COMMAND" jdbcType="VARCHAR" property="command"/> <result column="DESCRIPTION" jdbcType="VARCHAR" property="description"/> <result column="CONTENT" jdbcType="VARCHAR" property="content"/> </resultMap>
Message类的id是String型的,mybatis能自动将数据库里查到的int型ID转换成String型的,完成对象数据填充么?