赞
踩
在启动类上加引入的服务中的mapper路径,在配置文件中将mapperLocations的值改为classpath*:mapper/.xml:
@MapperScan(basePackages = {"com.ruoyi..mapper"}) 和 mapperLocations: classpath*:mapper/*.xml 是 MyBatis 在 Spring Boot 中配置 Mapper 扫描和 XML 文件加载的两种不同方式。
@MapperScan(basePackages = {“com.ruoyi.*.mapper”}):
这是通过在 Spring Boot 应用程序的配置类上使用 @MapperScan 注解来指定需要扫描的 Mapper 接口所在的包路径。通常情况下,你会在启动类或者配置类上使用这个注解,并指定需要扫描的包路径,以便能够将这些 Mapper 接口注册为 Spring 的 Bean。
mapperLocations: classpath*:mapper/.xml:
这是在 application.yml 或 application.properties 配置文件中指定 MyBatis Mapper XML 文件的位置。在这个例子中,classpath:mapper/*.xml 表示 MyBatis 会在类路径下的 mapper 目录中查找所有以 .xml 结尾的文件作为 Mapper 文件,用于 SQL 映射。
这两种配置方式分别用于扫描 Mapper 接口并注册为 Bean,以及指定 Mapper XML 文件的位置。通过这些配置,你可以方便地让 MyBatis 与 Spring Boot 集成,并正确地加载 Mapper 接口和 XML 文件,从而实现数据操作功能。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。