溫馨提示×

mybatis mapper配置的方法是什么

小億
103
2023-09-28 22:12:36
欄目: 編程語言

MyBatis的Mapper配置方法包括以下兩種方式:

  1. XML配置文件:在XML配置文件中定義Mapper接口與SQL語句的映射關(guān)系。通常,這種方式需要在MyBatis的主配置文件中引入Mapper配置文件,并通過namespace屬性將Mapper接口與XML配置文件關(guān)聯(lián)起來。

示例:

<!-- MyBatis主配置文件 -->
<configuration>
...
<mappers>
<mapper resource="com/example/mapper/ExampleMapper.xml"/>
</mappers>
</configuration>
<!-- ExampleMapper.xml -->
<mapper namespace="com.example.mapper.ExampleMapper">
<select id="selectById" resultType="com.example.entity.Example">
SELECT * FROM example WHERE id = #{id}
</select>
</mapper>
  1. 注解方式:通過在Mapper接口的方法上使用注解,直接定義SQL語句。這種方式不需要編寫額外的XML配置文件。

示例:

public interface ExampleMapper {
@Select("SELECT * FROM example WHERE id = #{id}")
Example selectById(int id);
}

這兩種方式可以根據(jù)具體的項目需求和開發(fā)習(xí)慣選擇使用。

0