SpringBoot报错Property 'mapperLocations' was not specified.
时间: 2023-09-28 08:06:42 浏览: 1200
Laravel 5.4中migrate报错: Specified key was too long error的解决
这个错误是因为在你的 Spring Boot 应用程序的配置文件中没有指定属性 'mapperLocations'。'mapperLocations' 是用于指定 MyBatis 的 Mapper 文件位置的属性。
你可以尝试在你的配置文件(通常是 application.properties 或 application.yml)中添加以下内容:
对于 application.properties:
```
mybatis.mapper-locations=classpath:mapper/*.xml
```
对于 application.yml:
```yaml
mybatis:
mapper-locations: classpath:mapper/*.xml
```
确保将 "classpath:mapper/*.xml" 替换为你实际的 Mapper 文件所在的路径。
这样配置后,Spring Boot 在启动时就会扫描指定路径下的 Mapper 文件并加载它们。
如有其他问题,请随时提问。
阅读全文