springboot修改静态资源步骤
时间: 2023-11-07 16:58:03 浏览: 150
SpingBoot-Web静态资源
1. 将静态资源放置在项目的src/main/resources/static目录下或者src/main/resources/public目录下。
2. 在application.properties或application.yml文件中设置Spring Boot应用的静态资源路径,例如:
```
# application.properties
spring.resources.static-locations=classpath:/public/,classpath:/static/
# application.yml
spring:
resources:
static-locations: classpath:/public/,classpath:/static/
```
3. 在Controller中添加@RequestMapping注解,指定访问静态资源的路径,例如:
```
@Controller
public class MyController {
@RequestMapping("/static/**")
public String staticResource() {
return "forward:/";
}
}
```
4. 启动Spring Boot应用,访问指定路径即可访问静态资源。
阅读全文