赞
踩
- public void addResourceHandlers(ResourceHandlerRegistry registry) {
- /*
- http://localhost:9091/img/0a3b3288-3446-4420-bbff-f263d0c02d8e.jpg
- 下面配置的大概意思就是,只有在url中是以img开头(如:http://localhost:8080/img)+ 文件名
- 就到文件夹中如(F:\fff\img\)找到对应的图片或视频
- */
- registry.addResourceHandler("/staticImg/**").addResourceLocations("file:C:\\Users\\Administrator\\Desktop\\feixian\\img\\");
- // registry.addResourceHandler("/play/**").addResourceLocations("file:F:\\fff\\play\\");
- }
addResourceLocations的参数的最后一定要加上斜杠\\!!!!!!!!!!!!!!!!!
被这个问题折磨了半个多小时,找不到问题所在
方法是实现WebMvcConfigurer的,类上要加上implements WebMvcConfigurer。
个人学习记录
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。