经常在项目中遇见Mapper
那么这个Mapper到底是什么意思呢
其实呢,Mapper啊
就是一个个抽象的接口,看到了吧,没有具体的实现方法,它就是一个接口,但是呢,Mapper其实主要是和数据库操作有关的,它是去实现CRUD的
Mapper接口的方法可以通过,注解啊和xml去进行关联的SQL语句
代码这种东西举个例子就最直观了嘛
写个Mapper的接口啊
public interface AdminMapper{
User findById(int id);
int insertUser(User user);
int updateUser(User user);
int deleteUser(User user);
}
那么相应的xml
<mapper namespace="com.example.mapper.Usermapper">
<select id="findById" resultType="User">
select * from user where id=#{id}
</select>
</mapper>
当然也可以通过注解,我觉得注解更简洁,当然缺点就是没那么结构化
@Select(select * from user where id = #{id})
User findById(id);
是的就是这样,记得import一下mapper
当然还有另外一种,如果采用了Mybatis这个框架
MyBatis 使用 Mapper
接口和 sqlSession
进行自动映射,将数据库查询结果自动映射到 Java 对象中,简化了手动处理结果集的复杂度。
当然还有Spring自动扫描
在这一部分,我们探讨的是 Mapper 接口与 Spring 整合管理 的过程。在 Spring 与 MyBatis 的整合中,Mapper
接口通过 Spring 容器进行管理,并可以通过依赖注入的方式直接注入到业务层(如 Service
层)中,而不需要开发者手动实例化对象。
详细解读
1. @Service
注解
@Autowired
注解用于自动注入依赖(Dependency Injection),在这里,它告诉 Spring 框架自动将UserMapper
这个接口的实现类注入到UserService
类中,而不需要手动创建UserMapper
的实例。- 这个注入过程是基于 Spring 容器 管理的 Bean。Spring 会找到对应的
UserMapper
接口的实现,并将其注入到UserService
中。 - 通过这种注解方式,开发者不需要显式地写代码来创建
UserMapper
实例,Spring 会自动完成对象的初始化和注入。
3. UserMapper
的注入
UserMapper
是一个 MyBatis 映射接口,在项目中,它定义了与数据库相关的操作方法(如 findById(int id)
)。在项目运行时,MyBatis 框架会通过代理机制生成 UserMapper
的实现类,Spring 会通过依赖注入将这个实现类注入到 UserService
中。
为了完成这一过程,项目中还需要配置 Spring 和 MyBatis 的整合:
- 在 Spring 配置文件或 Spring Boot 的配置类中,添加 Mapper 扫描 配置,告诉 Spring 容器要扫描
Mapper
接口所在的包,并自动为这些接口生成实现类。例如:
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.mecol.film.mapper"/> <!-- 指定Mapper接口所在包路径 -->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
</bean>
标签:Mapper,Spring,UserMapper,接口,id,目录,作用,注入
From: https://blog.csdn.net/weixin_73537561/article/details/141941241