Springboot引用静态文件

在创建Springboot项目时,页面文件html一般放在/templates下:

# 定位模板的目录

spring.mvc.view.prefix=classpath:/templates/

# 给返回的页面添加后缀名

spring.mvc.view.suffix=.html

常常需要引用/static下的文件,springboot在加载页面的时候就会加载/resources/static下面的文件,因此直接定位到static文件夹下的文件地址即可。比如,在页面中引用static下面的js文件夹下的jquery文件:

你可能感兴趣的:(Springboot引用静态文件)