springboot项目图片上传及图片路径分析(jar包形式)

2023-11-02 23:40

本文主要是介绍springboot项目图片上传及图片路径分析(jar包形式),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本文仅为记录学习轨迹,如有侵权,联系删除

一、图片路径分析
springboot项目在还没打包时,很多人喜欢把图片上传后,保存在项目的静态资源下,就像下面的图片那样
在这里插入图片描述
这样好像看来没问题,在还没打成jar包时,在idea启动运行正常,图片也确实存储到了静态资源下的images文件夹中,但是一旦打包成jar包后,运行jar包时,发现图片存储路径出错了,图片并不会存储到静态资源下的images文件夹中,而是到服务器的用户下的路径那里去,如果把打包后的jar包在自己电脑运行,按照上面的代码,图片就会存储到C盘下对应的电脑用户那里
在这里插入图片描述
这是因为打包后会生成一个jar包,这个jar可以解压,发现里面的classes就打包有静态资源,而且上面的代码String path = System.getProperty(“user.dir”);在idea启动运行时会获取到项目的根路径,所以在idea启动运行时可以将图片保存在项目下的images文件夹里面,而打包成一个jar后,用java -jar jar包名称启动时,获取的确是C盘下的用户路径,而不会获取到jar所在的目录,跟不会获取到jar里面的classes文件的路径
在这里插入图片描述
这种获取图片路径并存储的方式肯定不是我想要的,我想要的效果是,即使打成jar包后,可以在jar包所在目录下自动生成一个文件夹,上传的图片就保存在这个文件夹中,这样就不论你jar包部署在哪里,都可以获取到jar所在根目录,并自动生成一个文件夹保存上传的图片
在这里插入图片描述
这样的话部署就方便多了

二、实现图片上传
(1)单文件上传(非异步)
我们知道项目打包后的jar包都在target文件夹里面,也就是说target所在文件夹才是jar包所在的路径,所以,图片存储的位置就应该在target里面,这样在打成jar包后,就可以获取jar包所在目录,实现上面分析的功能

前端代码

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head><meta charset="UTF-8"><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><title>单文件上传</title><link th:href="@{/css/bootstrap.min.css}" rel="stylesheet"><script th:src="@{/js/jquery.min.js}"></script>
</head>
<body>
<div th:if="${uploadStatus}" style="color: red" th:text="${uploadStatus}">上传成功</div>
<form th:action="@{/singleUploadFile}" method="post" enctype="multipart/form-data"><div class="form-group"><label>单文件上传</label><input class="form-control-file" type="file" name="file" required="required" /></div><input id="submit" type="submit" value="上传" />
</form>
</body>
</html>

后端对应控制器的代码

  //来到单文件上传页面(非异步)@GetMapping("/toSingleUpload")public String singleUpload() throws FileNotFoundException {return "singleUpload";}//上传图片(非异步)@PostMapping("/singleUploadFile")public String singleUploadFile(MultipartFile file, Model model){String fileName=file.getOriginalFilename(); //获取文件名以及后缀名//fileName= UUID.randomUUID()+"_"+fileName;//重新生成文件名(根据具体情况生成对应文件名)//获取jar包所在目录ApplicationHome h = new ApplicationHome(getClass());File jarF = h.getSource();//在jar包所在目录下生成一个upload文件夹用来存储上传的图片String dirPath = jarF.getParentFile().toString()+"/upload/";System.out.println(dirPath);File filePath=new File(dirPath);if(!filePath.exists()){filePath.mkdirs();}try{//将文件写入磁盘file.transferTo(new File(dirPath+fileName));//上传成功返回状态信息model.addAttribute("uploadStatus","上传成功");}catch (Exception e){e.printStackTrace();//上传失败,返回失败信息model.addAttribute("uploadStatus","上传失败:"+e.getMessage());}//携带上传状态信息回调到文件上传页面return "singleUpload";}

在idea启动运行,图片保存在target下的upload,打成jar包后运行,则会在jar所在目录下自动生成upload文件存储上传的图片
在这里插入图片描述

实现了图片的上传后,如何获取图片,如果没法获取那上传图片就没意思了,假设我将jar放在路径"E:\文件上传“,图片就在文件夹"E:\文件上传\upload\1.png"里面,如果用这种方式获取图片是不行的,首先是访问不了项目外的资源,其次这个路径应该是动态的,随着jar包的路径变动的,为了实现这两点就需要做个视图解析器
在这里插入图片描述
这样访问”/upload/“就会自动访问到jar包下的upload文件夹,也就可以访问图片了

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head><meta charset="UTF-8"><title>获取图片</title>
</head>
<body><!--这样访问”/upload/“就会自动访问到jar包下的upload文件夹,也就可以访问图片了--><img src="/upload/1.png"></body>
</html>

在这里插入图片描述

这样不论是在idea里运行还是打包运行,都可以完美的获取上传和获取图片

(2)单文件上传(异步)
在(1)非异步单文件上传的基础,再实现异步单文件上传
前端代码

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head><meta charset="UTF-8"><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><title>无刷文件上传</title><link th:href="@{/css/bootstrap.min.css}" rel="stylesheet"><script th:src="@{/js/jquery.min.js}"></script>
</head>
<body>
<div th:if="${msg}" style="color: red" th:text="${msg}">上传成功</div><form id="form" th:action="@{/ajaxUploadFile}" ><div class="form-group"><label>无刷文件上传</label><input type='file' style='margin: 5px;' name='files' required='required'><input id="submit" type="button" value="上传" onclick="ajaxUpload()" style="margin-top: 10px"/></div></form><script type="text/javascript">function ajaxUpload() {var form=new FormData();//获取选择的文件$.each($('input[name="files"]'),function (index,item) {form.append("files",item.files[0])});//发送异步请求$.ajax({method:'post',url:'/ajaxUploadFile',data:form,processData: false,contentType:false,success:function (res) {//成功返回触发的方法alert(res.msg);},//请求失败触发的方法error:function () {console.log("ajax请求失败");}})}</script>
</body>
</html>

后端代码

//来到单文件上传页面(异步)@GetMapping("/ajaxUpload")public String ajaxUpload(){return "ajaxUpload";}//文件上传管理(异步)@PostMapping("/ajaxUploadFile")@ResponseBodypublic Map ajaxUploadFile(MultipartFile[] files){Map<String,Object> map=new HashMap<>();for(MultipartFile file:files){//获取文件名以及后缀名String fileName=file.getOriginalFilename();//获取jar包所在目录ApplicationHome h = new ApplicationHome(getClass());File jarF = h.getSource();//在jar包所在目录下生成一个upload文件夹用来存储上传的图片String dirPath = jarF.getParentFile().toString()+"/upload/";System.out.println(dirPath);File filePath=new File(dirPath);if(!filePath.exists()){filePath.mkdirs();}try{//将文件写入磁盘file.transferTo(new File(dirPath+fileName));//文件上传成功返回状态信息map.put("msg","上传成功!");}catch (Exception e){e.printStackTrace();//上传失败,返回失败信息map.put("msg","上传失败!");}}//携带上传状态信息回调到文件上传页面return map;}

在这里插入图片描述

在这里插入图片描述

获取图片的方式参考(1)单文件上传(非异步)

三、总结
(1)图片不能存储在项目里面的静态资源里面
(2)图片存储的位置在jar包所在目录,没打jar包时是target下的目录位置,打jar包后是jar所在目录(动态)
(3)图片存储路径的获取用以下代码,获取的路径是target的目录

  //获取jar包所在目录ApplicationHome h = new ApplicationHome(getClass());File jarF = h.getSource();//在jar包所在目录下生成一个upload文件夹用来存储上传的图片String dirPath = jarF.getParentFile().toString()+"/upload/";System.out.println(dirPath);

四、更新配置文件
更新了部署环境的判断,jar包部署可以有Linux环境和window环境,下面增加了环境的判断

@Configuration  //必须加上
public class MyWebMvcConfig extends WebMvcConfigurerAdapter {//将jar文件下的对应静态资源文件路径对应到磁盘的路径(根据个人的情况修改"file:static/"的static的值@Overridepublic void addResourceHandlers(ResourceHandlerRegistry registry) {ApplicationHome h = new ApplicationHome(getClass());File jarF = h.getSource();String dirPath = jarF.getParentFile().toString()+"/upload/";String os = System.getProperty("os.name");System.out.println(os);if (os.toLowerCase().startsWith("win")) {  //如果是Windows系统registry.addResourceHandler("/upload/**").addResourceLocations("file:"+dirPath);System.out.println("file:" + dirPath);} else {  //linux 和mac
//            registry.addResourceHandler("/upload/**") //虚拟路劲
//                    .addResourceLocations("file:" + System.getProperty("user.dir") + "/upload/");//jar 同级目录
//            System.out.println("file:" + System.getProperty("user.dir") + "/upload/");registry.addResourceHandler("/upload/**").addResourceLocations("file:"+dirPath);System.out.println("file:" + dirPath);}}}

转自https://blog.csdn.net/qq_40298902/article/details/106609090

这篇关于springboot项目图片上传及图片路径分析(jar包形式)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/334091

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

如何用Docker运行Django项目

本章教程,介绍如何用Docker创建一个Django,并运行能够访问。 一、拉取镜像 这里我们使用python3.11版本的docker镜像 docker pull python:3.11 二、运行容器 这里我们将容器内部的8080端口,映射到宿主机的80端口上。 docker run -itd --name python311 -p