赞
踩
配置节点:spring.web.resources.static-locations
值为要配置的静态资源存放目录
如:
spring:
web:
resources:
static-locations: classpath:/test/
以上配置中,设置静态资源目录为src/main/resources/test/目录。
假如在test目录下存放文件test.txt,程序启动后,便能通过浏览器访问ip:port/test.txt访问文件。
新建WebMvcConfig类,继承WebMvcConfigurationSupport类,并添加注解@Configuration。
重写WebMvcConfigurationSupport类的addResourceHandlers方法。
通过参数ResourceHandlerRegistry的addResourceHandler方法和a
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。