SpringBoot配置图片访问的虚拟路径
作者:qq-1438608594
大家好,本篇文章主要讲的是SpringBoot配置图片访问的虚拟路径,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下
记录一次SpringBoot配置虚拟路径访问图片的笔记
最近编写的项目都是需要将图片进行访问的,而我的是有spring+springMVC+Mybatis框架实现的项目,并且在使用ssm框架的时候已经是用到了图片访问的虚拟路径来进行访问的,ssm配置虚拟路径实在Tomcat上配置的图片访问,而SpringBoot是内置Tomcat的那应该怎么配置呢具体看下图,
先配置图片上传路径
这个是jsp页面的代码段
<div class="layui-form-item"> <label class="layui-form-label">简介图片</label> <div class="layui-upload layui-input-block"> <button type="button" class="layui-btn" id="SingleUpload"> <i class="layui-icon layui-icon-upload"></i> 上传图片 </button> <img id="simpleImg" width="60px" height="60px"> </div> </div>
js代码段
upload.render({ //这里是上传一张图片 elem: "#SingleUpload", url: ctx + "/book/SingleUpload", done: function (res, index, upload) { //假设code=0代表上传成功 if (res.code == 0) { layer.msg("简介图片加载成功!", {icon: 1}); $("#simpleImg").attr("src", res.image); $("#SingleUpload").addClass("layui-btn-disabled"); $("#SingleUpload").off("click"); } } });
接下来是Controller里面的具体配置
private String simplePath = "D:/uploadLibrary/"; // 详细图片地址 private StringBuilder detailsPath = new StringBuilder(); @RequestMapping("/SingleUpload") @ResponseBody public Map<String, Object> SingleUpload(@RequestParam("file") MultipartFile file, HttpServletRequest req, HttpSession session) { Map<String, Object> map = new HashMap<String, Object>(); try { String suffixName = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")); String filename = UUID.randomUUID() + suffixName; File filePath = new File(dirPath); if (!filePath.exists()) { filePath.mkdirs(); } //创建虚拟路径存储 simplePath = req.getServletContext().getContextPath() + "/file/" + filename; // simplePath = filename; map.put("image", simplePath); file.transferTo(new File(dirPath + filename)); map.put("code", 0); map.put("msg", "上传成功"); } catch (Exception e) { map.put("code", 1); map.put("msg", "上传失败"); e.printStackTrace(); } return map; }
数据库存储的图片路径
一切都设置好了过后这时就需要对SpringBoot配置虚拟路径来对图片进行访问了
新建config 控制类在里面新建类方法WebMvcConfig来对图片进行虚拟路径的配置
具体代码
package com.book.libratyman.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class WebMvcConfig implements WebMvcConfigurer { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/file/**").addResourceLocations("file:D:/uploadLibrary/"); } }
addResourceHandler("/file/**")是我在项目中访问图片的路径也就是数据里面的图片存储路径,而addResourceLocations(“file:D:/uploadLibrary/”)则是我上传图片的真实路径我上传图片的真实路径是 **D:/uploadLibrary/**配置以后运行项目便可以访问项目图片了。
图片显示出来就表示已经配置成功了哦!!!!!
到此这篇关于SpringBoot配置图片访问的虚拟路径的文章就介绍到这了,更多相关SpringBoot配置图片访问内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!