SpringBoot+MyBatis中@Mapper和mybatis.mapper
spring mybatis项目中,@Mapper和mybatis.mapper-locations的区别
在springboot mybatis项目中使用不同的方式来配置映射器位置,会导致不同的行为。
@Mapper vs mybatis.mapper-locations
@Mapper:这是一个注解,用于标记接口为mybatis映射器接口。它可以作为mybatis扫描映射器接口的一个选项。mybatis.mapper-locations:这是一个application.properties文件中指定的配置属性,用于指定包含映射器xml文件的路径。
功能差异
@Mapper和mybatis.mapper-locations的主要功能差异如下:
@Mapper用于查找和创建映射器接口的代理对象,使程序员能够在接口中直接调用sql语句。mybatis.mapper-locations用于指定mybatis扫描xml映射器文件的位置。
为什么两者都可以工作?
在你的案例中,@Mapper和application.properties中的mybatis.mapper-locations都可以工作,原因如下:
@Mapper:由于.example.baseproject.mapper包有映射器接口,因此使用@Mapper扫描该包并生成了代理对象。mybatis.mapper-locations:当使用application.properties中的mybatis.mapper-locations时,mybatis会扫描配置文件中指定的路径(classpath:mapper/*.xml),并加载相应的xml映射器文件。由于xml文件指定了相同的映射器接口,因此也会生成代理对象。
什么时候使用@Mapper?
建议在如下情况下使用@Mapper:
只有一个映射器接口包时。包不会频繁更改时。
什么时候使用mybatis.mapper-locations?
建议在以下情况下使用mybatis.mapper-locations:
存在多个映射器接口包时。经常添加或删除映射器接口时。
以上就是Spring Boot+MyBatis中@Mapper和mybatis.mapper-locations配置有何区别及如何选择?的详细内容,更多请关注范的资源库其它相关文章!