spring的mapperxml配置
时间: 2023-07-25 13:21:54 浏览: 96
在Spring中使用MyBatis框架进行数据库操作时,需要进行Mapper XML配置。下面是一个简单的Mapper XML配置示例:
1. 首先需要在Spring配置文件中配置MyBatis的SqlSessionFactoryBean:
```xml
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="typeAliasesPackage" value="com.example.domain" />
<property name="mapperLocations" value="classpath*:mapper/*.xml" />
</bean>
```
2. 然后在mapper文件夹下创建相应的Mapper接口和Mapper XML文件,例如:
```java
public interface UserMapper {
User selectUserById(int id);
}
```
```xml
<mapper namespace="com.example.mapper.UserMapper">
<select id="selectUserById" parameterType="int" resultType="com.example.domain.User">
select * from user where id = #{id}
</select>
</mapper>
```
3. 最后在Spring配置文件中配置MapperScannerConfigurer:
```xml
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.example.mapper" />
</bean>
```
这样就完成了Mapper XML配置的基本步骤。
阅读全文