SpringMvc commons-fileupload圖片/文件上傳

来源:https://www.cnblogs.com/chenyanbin/archive/2019/12/11/12023244.html
-Advertisement-
Play Games

簡介 SpringMvc文件上傳的實現,是由commons-fileupload這個jar包實現的。 需求 在修改商品頁面,添加上傳商品圖片功能。 Maven依賴包 pom.xml <!-- 文件上傳 --> <dependency> <groupId>commons-fileupload</gro ...


簡介

  SpringMvc文件上傳的實現,是由commons-fileupload這個jar包實現的。

需求

在修改商品頁面,添加上傳商品圖片功能。

Maven依賴包

pom.xml

        <!-- 文件上傳 -->
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.4</version>
        </dependency>

配置多部件bean:springmvc.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">
    <!-- 處理器類的掃描 -->
    <context:component-scan
        base-package="com.cyb.ssm.controller"></context:component-scan>
    <mvc:annotation-driven
        conversion-service="conversionService" />
    <!-- 顯示配置視圖解析器 -->
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
    <!-- 配置自定義的轉換服務 -->
    <bean id="conversionService"
        class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <!-- 自定義日期類型轉換器 -->
                <bean class="com.cyb.ssm.controller.converter.DateConverter"></bean>
            </set>
        </property>
    </bean>
    <!-- 配置異常處理器 -->
    <bean class="com.cyb.ssm.resolver.CustomExceptionResolver"></bean>
    <!-- 配置多部件解析器,id固定值,不能亂寫 -->
    <bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!-- 限制上傳文件的大小,單位是byte -->
        <property name="maxUploadSize" value="5000000"></property>
    </bean>
</beans>

控制層:ItemController.java

package com.cyb.ssm.controller;

import java.io.File;
import java.io.IOException;
import java.util.Date;
import java.util.List;
import java.util.UUID;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.ModelAndView;
import com.cyb.ssm.exception.CustomException;
import com.cyb.ssm.po.Item;
import com.cyb.ssm.po.ItemQueryVO;
import com.cyb.ssm.service.ItemService;

//@Controller
//RestController:註解相當於Controller註解和ResponseBody註解的結合體
@RestController
@RequestMapping(value = "item", produces = "application/json;charset=utf8")
public class ItemController {
    @Autowired
    private ItemService Service;

    @RequestMapping(value = "updateItem")
    public Item updateItem(Integer id, String name, Float price, Item item, MultipartFile pictureFile) throws Exception {
        System.out.println("1111");
        if (pictureFile != null) {
            //獲取上傳文件名稱
            String originalFilename = pictureFile.getOriginalFilename();
            if (originalFilename != null && !"".contentEquals(originalFilename)) {
                //獲取擴展名
                String extName = originalFilename.substring(originalFilename.lastIndexOf("."));
                //重新生成一個文件名稱
                String newFileName = UUID.randomUUID().toString()+extName;
                //指定存儲文件的根目錄
                String baseDir="D:\\temp\\pic\\";
                File dirFile=new File(baseDir);
                if (!dirFile.exists()) {
                    dirFile.mkdirs();
                }
                //將上傳的文件複製到新的文件(完整路徑)中
                pictureFile.transferTo(new File(baseDir + newFileName));
                
                //保存文件路徑
                item.setPic(newFileName);
            }
        }
        //商品修改
        Service.updateItem(item);
        return item;
    }

    @RequestMapping("showEdit")
    public ModelAndView showEdit(Integer id) {
        Item item = Service.queryItemById(id);
        ModelAndView mvAndView = new ModelAndView();
        mvAndView.addObject("item", item);
        mvAndView.setViewName("item/item-edit");
        return mvAndView;
    }
}

jsp文件:item-edit.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>修改商品信息</title>
</head>
<body>
    <!-- 上傳圖片是需要指定屬性 enctype="multipart/form-data" -->
    <form id="itemForm"
        action="${pageContext.request.contextPath}/item/updateItem"
        method="post" enctype="multipart/form-data">
        <input type="hidden" name="id" value="${item.id }" /> 修改商品信息:
        <table width="100%" border=1>
            <tr>
                <td>商品名稱</td>
                <td><input type="text" name="name" value="${item.name }" /></td>
            </tr>
            <tr>
                <td>商品價格</td>
                <td><input type="text" name="price" value="${item.price }" /></td>
            </tr>
            <tr>
                <td>商品圖片</td>
                <td><c:if test="${item.pic !=null}">
                        <img src="http://localhost/pic/${item.pic} " width=100 height=100 />
                        <br />
                    </c:if> <input type="file" name="pictureFile" /></td>
            </tr>
            <tr>
                <td>商品簡介</td>
                <td><textarea rows="3" cols="30" name="detail">${item.detail }</textarea>
                </td>
            </tr>
            <tr>
                <td colspan="2" align="center"><input type="submit" value="提交" />
                </td>
            </tr>
        </table>
    </form>
</body>
</html>

配置tomcat和映射磁碟路徑(註意埠不要衝突)

測試

項目源碼

直接下載


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • python中的 和 ,能夠讓函數支持任意數量的參數,它們在函數定義和調用中,有著不同的目的 一. 打包參數 的作用:在函數定義中,收集所有的位置參數到一個新的元組,並將這個元組賦值給變數args 的作用:在函數定義中,收集關鍵字參數傳遞給一個字典,並將這個字典賦值給變數kwargs PS:遇到問題 ...
  • 1、find檢測str是否包含在mystr,如果是返回開始的索引值,否則返回 1 2、index和find一樣只不過,str不在mystr中會報一個異常 3、rfind、rindex從右往左找 4、count返回str在start和end之間,在mystr里出現的次數 5、replace把mystr ...
  • Python是面向對象(OOP)的語言, 而且在OOP這條路上比Java走得更徹底, 因為在Python里, 一切皆對象, 包括int, float等基本數據類型. 在Java里, 若要為一個類定義只讀的屬性, 只需要將目標屬性用private修飾, 然後只提供getter()而不提供setter( ...
  • 原創發佈在 https://blog.csdn.net/qq_21484935/article/details/103461778 思路:請求小說的url並對內容進行解析,找到帶有更新時間的span標簽。然後配置郵箱,將內容作為發送。 我選擇的是網易的126郵箱,在官網登錄賬號,設置中,打開“POP ...
  • 一. 基本介紹 1. Lambda Lambda是java 8引入的一個新特性,一個Lambda表達式是一個匿名函數,它提供了更為簡單的語法和協作方式,能夠讓我們通過表達式來代替函數式介面。 Lambda表達式完全可以用在簡化創建匿名內部類上。 2. 函數式介面 所謂的函數式介面,就是指 只有一個抽 ...
  • PHP 從誕生到現在已經有20多年曆史,從Web時代興起到移動互聯網退潮,互聯網領域各種編程語言和技術層出不窮, Node.js 、 GO 、 Python 不斷地在挑戰 PHP 的地位。這些技術的推動者非常熱衷於唱衰 PHP , PHP 語言的未來在哪裡?PHP 程式員當如何應對未來的變革? 作為 ...
  • 對象的產生 當一個對象被創建時,會對其中各種類型的成員變數自動進行初始化賦值,除了基本數據類型之外的變數類型都是引用型。 匿名對象 在創建對象時只有new 和 類名,不將new 出來的值賦給對象名,而是直接調用這個對象的方法。 例如:new Person().shout(); 使用情況 如果對一個對 ...
  • 在JAVA中,解析有三種方式: Dom解析(支持改刪,耗記憶體)、 Sax解析(不支持改刪,不耗記憶體)、 Pull解析(在Android中推薦使用的一種解析XML的方式,在下章學習)、 1.支持Dom與Sax解析的開發包 分為兩種. JAXP: 由sun公司推出的解析標準實現(本章只學習該包的解析方法 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...