为什么mapper层不使用@Mapper注解,依然可以注入?

在MyBatis中,我们通常使用Mapper接口来操作数据库。在Spring Boot中,我们可以使用@MapperScan注解来扫描Mapper接口所在的包,并将其注册到Spring容器中。但是,即使我们没有在Mapper接口上使用@Mapper注解,Spring Boot也可以将其注册到容器中。

这是因为在MyBatis-Spring-Boot-Starter中,已经为我们自动配置了MapperScannerConfigurer,它会自动扫描指定包下的Mapper接口,并将其注册到Spring容器中。因此,即使我们没有在Mapper接口上使用@Mapper注解,Spring Boot也可以将其注册到容器中。

需要注意的是,如果我们没有为MapperScannerConfigurer指定Mapper接口所在的包,那么就需要在Mapper接口上使用@Mapper注解,以便让Spring Boot能够将其注册到容器中。12

你可能感兴趣的:(#,java,#,spring,web开发,java,intellij-idea,开发语言)