tomcat+springboot 通过链接访问静态资源
时间: 2023-08-04 09:11:04 浏览: 107
在SpringBoot中静态资源访问方法
在Spring Boot中,我们可以将静态资源放置在`src/main/resources/static`目录下,然后通过相对路径访问这些静态资源。
假设我们有一个名为`index.html`的静态页面,它位于`src/main/resources/static`目录下。我们可以通过以下链接访问该页面:
```
http://localhost:8080/index.html
```
如果我们希望将静态资源放置在不同的目录中,可以在`application.properties`文件中配置`spring.resources.static-locations`属性来指定不同的目录。例如,如果我们将静态资源放置在`/opt/static`目录下,可以配置如下:
```
spring.resources.static-locations=file:/opt/static/
```
然后,我们可以通过以下链接访问静态资源:
```
http://localhost:8080/index.html
```
其中`index.html`位于`/opt/static`目录下。需要注意的是,如果我们在`application.properties`中指定了多个静态资源目录,则这些目录之间应该使用逗号分隔。
阅读全文