静态资源:
1.默认情况下,springboot会从classpath下的 /META-INF.resources/,/static/,/resources/,/public/ 下面加载静态资源;
2.可以通过修改 spring.resources.static-locations 来修改静态资源加载的地址:
spring.resources.static-locations=classpath:/META-INF.resources/,classpath:/static/,classpath:/resources/,
classpath:/public/,classpath:/myDir/
文件结构如下:
访问 http://localhost:8084/index4.html
3.注意:因为springboot应用是被打成jar包,所以src/main/webapp不会被加载!!!