使用SpringBoot设置虚拟路径映射绝对路径
短信预约 -IT技能 免费直播动态提醒
SpringBoot 设置虚拟路径映射绝对路径
上传图片到本地路径,得到的是一个绝对路径例如:D:\picpath\O48681516429132485.png
但是前台需要的数据是这样的 :http://localhost:8082/image/O48681516429132485.png
那么就要设置虚拟路径 /image/ = D:\picpath\ 了,
下面我们就来代码实现下
作为一个负责任的程序员,我把包也给你们复制过来了。
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
//文件磁盘图片url 映射
//配置server虚拟路径,handler为前台访问的目录,locations为files相对应的本地路径
registry.addResourceHandler("/image/**").addResourceLocations("D:\\picpath\\");
}
}
是不是很简单呢?
springboot打war包图片的虚拟路径映射
这里我将自己学习的项目为例子作个简单的记录:
在html图片的路径如图
这里是头像路径的映射
然后要映射到阿里云Linux服务器上路径
注意,这两个路径是不同的,只是同名而已,HTML那里的路径可以随便修改,到最后映射到这个路径就可以,当然映射到别的路径也可以
映射方法
找到tomcat下的config下的server.xml文件
在Host节点加上下面的
前面是path是虚拟路径,对应的是HTML那里的代码,后面是真实路径,对应Linux上面真实路径
这里顺便放上后台接收上传头像的代码
@ResponseBody
@RequestMapping("uploadImage")
public DataGridView uploadImage(MultipartFile file, HttpSession session) throws Exception {
DataGridView dataGridView = null;
if (!file.isEmpty()){
String filename = file.getOriginalFilename(); //abc.jpg
String suffix = filename.substring(filename.lastIndexOf(".")); //后缀 如abc.jpg,就是jpg
String newFileName = DateUtil.getCurrentDateStr() + suffix; //新文件名
FileUtils.copyInputStreamToFile(file.getInputStream(),new File(userImageFilePath+newFileName));
Map<String,Object> map= new HashMap<>();
map.put("class="lazy" data-src","/project/userImages/"+newFileName);
map.put("title",newFileName);
dataGridView = new DataGridView(0, "上传成功", map);
User currentUser = (User) session.getAttribute("currentUser");
currentUser.setImageName(newFileName);
userService.save(currentUser);
session.setAttribute("currentUser",currentUser);
System.out.println("执行完了");
}
return dataGridView;
}
顺便说下war包放到阿里云服务器上路径映射(域名或者IP直接访问项目根路径):
<Context path="/" docBase="/home/tomcat/apache-tomcat-8.5.45/webapps/code007" debug="0" reloadable="true"/>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341