org.mybatis.spring.annotation里没有Mapper
时间: 2023-12-26 20:03:13 浏览: 66
解决SpringBoot整合Mybatis扫描不到Mapper的问题
是的,你是对的。org.mybatis.spring.annotation包中确实没有Mapper类。这个包提供了Spring集成MyBatis所需的注解,如@MapperScan和@Mapper。但是Mapper类实际上是在MyBatis框架中定义的,位于org.apache.ibatis.annotations包中。Mapper接口是MyBatis中用于描述SQL映射的接口,其中定义了访问数据库的方法。在Spring中,我们可以通过@MapperScan注解将Mapper接口扫描到Spring容器中,并在需要时使用@Autowired注解注入Mapper实例来访问数据库。
阅读全文