拿来一份别人的xml 映射文件是这样的
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.imooc.user.mapper.FansMapper">
<resultMap id="BaseResultMap" type="com.imooc.pojo.Fans">
<id column="id" jdbcType="VARCHAR" property="id" />
<result column="writer_id" jdbcType="VARCHAR" property="writerId" />
<result column="fan_id" jdbcType="VARCHAR" property="fanId" />
<result column="face" jdbcType="VARCHAR" property="face" />
<result column="fan_nickname" jdbcType="VARCHAR" property="fanNickname" />
<result column="sex" jdbcType="INTEGER" property="sex" />
<result column="province" jdbcType="VARCHAR" property="province" />
</resultMap>
</mapper>
打开
https://mybatis.org/mybatis-3...
官方文档
咦! mapper 这么没有哦! 他是什么意思呀???
id id 这个也么有哦
result又是什么鬼。。。