springboot 设置static-locations,访问报错:This application has no explicit mapping for /error, so you are seeing this
时间: 2024-04-18 10:22:48 浏览: 153
mybatis-plus代码生成器
Spring Boot中的static-locations属性用于指定静态资源的位置。当访问一个URL时,Spring Boot会根据static-locations属性配置的路径去查找对应的静态资源文件。
当访问报错"This application has no explicit mapping for /error, so you are seeing this"时,可能是因为没有配置正确的static-locations路径或者没有找到对应的静态资源文件。
要解决这个问题,你可以按照以下步骤进行操作:
1. 确保你的静态资源文件放置在正确的位置。默认情况下,Spring Boot会在classpath下的/static目录中查找静态资源文件。你可以将静态资源文件放置在该目录下,或者通过配置static-locations属性来指定其他路径。
2. 在application.properties或application.yml文件中添加static-locations属性的配置。例如,如果你将静态资源文件放置在classpath下的/static/myfiles目录中,可以在配置文件中添加如下配置:
application.properties:
```
spring.resources.static-locations=classpath:/static/,classpath:/static/myfiles/
```
application.yml:
```
spring:
resources:
static-locations: classpath:/static/,classpath:/static/myfiles/
```
这样配置后,Spring Boot会在/static和/static/myfiles两个目录下查找静态资源文件。
3. 重新启动应用程序,并尝试访问静态资源文件的URL。如果仍然出现错误,请检查日志文件以获取更详细的错误信息,并确保静态资源文件的路径和名称正确。
阅读全文