创建一个Mapper映射文件,可以按照以下步骤进行:
在src/main/resources
目录下创建一个新的文件夹,例如mapper
。
在mapper
文件夹下创建一个新的.xml
文件,例如UserMapper.xml
。
在UserMapper.xml
文件中添加XML声明和根元素<mapper>
。例如:
<?xml version="1.0" encoding="UTF-8"?>
<mapper namespace="com.example.mapper.UserMapper">
<!-- 此处为Mapper映射的具体内容 -->
</mapper>
<mapper>
标签内添加具体的映射内容,包括<select>
、<insert>
、<update>
和<delete>
等标签。例如,添加一个<select>
查询语句:<?xml version="1.0" encoding="UTF-8"?>
<mapper namespace="com.example.mapper.UserMapper">
<select id="getUserById" parameterType="int" resultType="com.example.model.User">
SELECT * FROM user WHERE id = #{id}
</select>
</mapper>
在<mapper>
标签内可以添加多个映射内容,每个映射内容都需要指定一个唯一的id
属性,以及相应的parameterType
和resultType
属性来指定参数类型和返回结果类型。
在Java代码中通过@Mapper
注解将Mapper接口与Mapper映射文件关联起来。例如:
@Mapper
public interface UserMapper {
User getUserById(int id);
}
通过以上步骤,就可以创建一个Mapper映射文件,并通过注解将Mapper接口与该映射文件关联起来,实现数据库操作的映射。