使用SpringBoot设置虚拟路径映射绝对路径
目录
- SpringBoot 设置虚拟路径映射绝对路径
- 下面我们就来代码实现下
- springboot打war包图片的虚拟路径映射
- 在html图片的路径如图
- 然后要映射到阿里云Linux服务器上路径
- 映射方法
- 在Host节点加上下面的
- 这里顺便放上后台接收上传头像的代码
SpringBoot 设置虚拟路径映射绝对路径 上传图片到本地路径,得到的是一个绝对路径例如:D:\picpath\O48681516429132485.png
【使用SpringBoot设置虚拟路径映射绝对路径】但是前台需要的数据是这样的 :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; /** * 图片绝对地址与虚拟地址映射 */ @Configurationpublic class WebMvcConfig extends WebMvcConfigurerAdapter { @Overridepublic 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.jpgString suffix = filename.substring(filename.lastIndexOf(".")); //后缀 如abc.jpg,就是jpgString newFileName = DateUtil.getCurrentDateStr() + suffix; //新文件名FileUtils.copyInputStreamToFile(file.getInputStream(),new File(userImageFilePath+newFileName)); Map map= new HashMap<>(); map.put("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直接访问项目根路径):
文章图片
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 第6.2章(设置属性)
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- Activiti(一)SpringBoot2集成Activiti6
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- iOS中的Block