SpringMVC聯合ajaxfileupload.js完成文件無刷新上傳。本站提示廣大學習愛好者:(SpringMVC聯合ajaxfileupload.js完成文件無刷新上傳)文章只能為提供參考,不一定能成為您想要的結果。以下是SpringMVC聯合ajaxfileupload.js完成文件無刷新上傳正文
直接看代碼吧,正文都在外面
起首是web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <servlet> <description>設置裝備擺設SpringMVC的前端掌握器</description> <servlet-name>upload</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>upload</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <filter> <description>處理參數傳遞進程中的亂碼成績</description> <filter-name>CharacterEncodingUTF8</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingUTF8</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
上面是位於//src//applicationContext.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:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd"> <!-- 啟動Spring的組件主動掃描機制(Spring會主動掃描base-package指定的包中的類和子包外面類) --> <!-- 此處可參考我的文章http://blog.csdn.net/jadyer/article/details/6038604 --> <context:component-scan base-package="com.jadyer"/> <!-- 啟動SpringMVC的注解功效,它會主動注冊HandlerMapping、HandlerAdapter、ExceptionResolver的相干實例 --> <mvc:annotation-driven/> <!-- 因為web.xml中設置SpringMVC攔阻一切要求,所以在讀取靜態資本文件時就會讀不到 --> <!-- 經由過程此設置裝備擺設便可指定一切要求或援用"/js/**"的資本,都邑從"/js/"中查找 --> <mvc:resources mapping="/js/**" location="/js/"/> <mvc:resources mapping="/upload/**" location="/upload/"/> <!-- SpringMVC上傳文件時,需設置裝備擺設MultipartResolver處置器 --> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <!-- 指定所上傳文件的總年夜小不克不及跨越800KB......留意maxUploadSize屬性的限制不是針對單個文件,而是一切文件的容量之和 --> <property name="maxUploadSize" value="800000"/> </bean> <!-- SpringMVC在超越上傳文件限制時,會拋出org.springframework.web.multipart.MaxUploadSizeExceededException --> <!-- 該異常是SpringMVC在檢討上傳的文件信息時拋出來的,並且此時還沒有進入到Controller辦法中 --> <bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> <property name="exceptionMappings"> <props> <!-- 碰到MaxUploadSizeExceededException異常時,主動跳轉到/WEB-INF/jsp/error_fileupload.jsp頁面 --> <prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">error_fileupload</prop> </props> </property> </bean> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean> </beans>
上面是上傳文件內容過年夜時的提醒頁面//WEB-INF//jsp//error_fileupload.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
<h1>文件過年夜,請從新選擇</h1>
上面是用於選擇文件的上傳頁面index.jsp
<%@ page language="java" pageEncoding="UTF-8"%> <!-- 此處不克不及簡寫為<script type="text/javascript" src=".."/> --> <script type="text/javascript" src="<%=request.getContextPath()%>/js/jquery-1.10.2.min.js"></script> <script type="text/javascript" src="<%=request.getContextPath()%>/js/ajaxfileupload.js"></script> <script type="text/javascript"> function ajaxFileUpload(){ //開端上傳文件時顯示一個圖片,文件上傳完成將圖片隱蔽 //$("#loading").ajaxStart(function(){$(this).show();}).ajaxComplete(function(){$(this).hide();}); //履行上傳文件操作的函數 $.ajaxFileUpload({ //處置文件上傳操作的辦事器端地址(可以傳參數,已親測可用) url:'${pageContext.request.contextPath}/test/fileUpload?uname=玄玉', secureuri:false, //能否啟用平安提交,默許為false fileElementId:'myBlogImage', //文件選擇框的id屬性 dataType:'text', //辦事器前往的格局,可所以json或xml等 success:function(data, status){ //辦事器呼應勝利時的處置函數 data = data.replace("<PRE>", ''); //ajaxFileUpload會對辦事器呼應回來的text內容加上<pre>text</pre>前後綴 data = data.replace("</PRE>", ''); data = data.replace("<pre>", ''); data = data.replace("</pre>", ''); //本例中設定上傳文件終了後,辦事端會前往給前台[0`filepath] if(data.substring(0, 1) == 0){ //0表現上傳勝利(後跟上傳後的文件途徑),1表現掉敗(後跟掉敗描寫) $("img[id='uploadImage']").attr("src", data.substring(2)); $('#result').html("圖片上傳勝利<br/>"); }else{ $('#result').html('圖片上傳掉敗,請重試!!'); } }, error:function(data, status, e){ //辦事器呼應掉敗時的處置函數 $('#result').html('圖片上傳掉敗,請重試!!'); } }); } </script> <div id="result"></div> <img id="uploadImage" src="http://www.firefox.com.cn/favicon.ico"> <input type="file" id="myBlogImage" name="myfiles"/> <input type="button" value="上傳圖片" onclick="ajaxFileUpload()"/> <!-- AjaxFileUpload簡介 官網:http://phpletter.com/Our-Projects/AjaxFileUpload/ 簡介:jQuery插件AjaxFileUpload可以或許完成無刷新上傳文件,而且簡略易用,它的應用人數許多,異常值得推舉 留意:引入js的次序(它依附於jQuery)和頁面中並沒有表單(只是在按鈕點擊的時刻觸發ajaxFileUpload()辦法) 罕見毛病及處理計劃以下 1)SyntaxError: missing ; before statement --檢討URL途徑能否可以拜訪 2)SyntaxError: syntax error --檢討處置提交操作的JSP文件能否存在語法毛病 3)SyntaxError: invalid property id --檢討屬性ID能否存在 4)SyntaxError: missing } in XML expression --檢討文件域稱號能否分歧或不存在 5)其它自界說毛病 --可以使用變量$error直接打印的辦法檢討各參數能否准確,比起下面這些有效的毛病提醒照樣便利許多 -->
最初是處置文件上傳的FileUploadController.java
package com.jadyer.controller; import java.io.File; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.io.FileUtils; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.multipart.MultipartFile; /** * SpringMVC中的文件上傳 * 1)因為SpringMVC應用的是commons-fileupload完成,所以先要將其組件引入項目中 * 2)在SpringMVC設置裝備擺設文件中設置裝備擺設MultipartResolver處置器(可在此參加對上傳文件的屬性限制) * 3)在Controller的辦法中添加MultipartFile參數(該參數用於吸收表單中file組件的內容) * 4)編寫前台表單(留意enctype="multipart/form-data"和<input type="file" name="****"/>) * PS:因為這裡應用了ajaxfileupload.js完成無刷新上傳,故本例中未應用表單 * --------------------------------------------------------------------------------------------- * 這裡用到了以下的jar * commons-io-2.4.jar * commons-fileupload-1.3.jar * commons-logging-1.1.2.jar * spring-aop-3.2.4.RELEASE.jar * spring-beans-3.2.4.RELEASE.jar * spring-context-3.2.4.RELEASE.jar * spring-core-3.2.4.RELEASE.jar * spring-expression-3.2.4.RELEASE.jar * spring-jdbc-3.2.4.RELEASE.jar * spring-oxm-3.2.4.RELEASE.jar * spring-tx-3.2.4.RELEASE.jar * spring-web-3.2.4.RELEASE.jar * spring-webmvc-3.2.4.RELEASE.jar * --------------------------------------------------------------------------------------------- * @create Sep 14, 2013 5:06:09 PM * @author 玄玉<http://blog.csdn.net/jadyer> */ @Controller @RequestMapping("/test") public class FileUploadController { /** * 這裡這裡用的是MultipartFile[] myfiles參數,所之前台就要用<input type="file" name="myfiles"/> * 上傳文件終了後前往給前台[0`filepath],0表現上傳勝利(後跟上傳後的文件途徑),1表現掉敗(後跟掉敗描寫) */ @RequestMapping(value="/fileUpload") public String addUser(@RequestParam("uname") String uname, @RequestParam MultipartFile[] myfiles, HttpServletRequest request, HttpServletResponse response) throws IOException{ //可以在上傳文件的同時吸收其它參數 System.out.println("收到用戶[" + uname + "]的文件上傳要求"); //假如用的是Tomcat辦事器,則文件會上傳到\\%TOMCAT_HOME%\\webapps\\YourWebProject\\upload\\文件夾中 //這裡完成文件上傳操感化的是commons.io.FileUtils類,它會主動斷定/upload能否存在,不存在會主動創立 String realPath = request.getSession().getServletContext().getRealPath("/upload"); //設置呼應給前台內容的數據格局 response.setContentType("text/plain; charset=UTF-8"); //設置呼應給前台內容的PrintWriter對象 PrintWriter out = response.getWriter(); //上傳文件的原名(即上傳前的文件名字) String originalFilename = null; //假如只是上傳一個文件,則只須要MultipartFile類型吸收文件便可,並且無需顯式指定@RequestParam注解 //假如想上傳多個文件,那末這裡就要用MultipartFile[]類型來吸收文件,而且要指定@RequestParam注解 //上傳多個文件時,前台表單中的一切<input type="file"/>的name都應當是myfiles,不然參數裡的myfiles沒法獲得到一切上傳的文件 for(MultipartFile myfile : myfiles){ if(myfile.isEmpty()){ out.print("1`請選擇文件後上傳"); out.flush(); return null; }else{ originalFilename = myfile.getOriginalFilename(); System.out.println("文件原名: " + originalFilename); System.out.println("文件稱號: " + myfile.getName()); System.out.println("文件長度: " + myfile.getSize()); System.out.println("文件類型: " + myfile.getContentType()); System.out.println("========================================"); try { //這裡不用處置IO流封閉的成績,由於FileUtils.copyInputStreamToFile()辦法外部會主動把用到的IO流關失落 //此處也能夠應用Spring供給的MultipartFile.transferTo(File dest)辦法完成文件的上傳 FileUtils.copyInputStreamToFile(myfile.getInputStream(), new File(realPath, originalFilename)); } catch (IOException e) { System.out.println("文件[" + originalFilename + "]上傳掉敗,客棧軌跡以下"); e.printStackTrace(); out.print("1`文件上傳掉敗,請重試!!"); out.flush(); return null; } } } //此時在Windows下輸入的是[D:\Develop\apache-tomcat-6.0.36\webapps\AjaxFileUpload\\upload\惱怒的小鳥.jpg] //System.out.println(realPath + "\\" + originalFilename); //此時在Windows下輸入的是[/AjaxFileUpload/upload/惱怒的小鳥.jpg] //System.out.println(request.getContextPath() + "/upload/" + originalFilename); //不推舉前往[realPath + "\\" + originalFilename]的值 //由於在Windows下<img src="file:///D:/aa.jpg">能被firefox顯示,而<img src="D:/aa.jpg">firefox是不認的 out.print("0`" + request.getContextPath() + "/upload/" + originalFilename); out.flush(); return null; } }
以上就是本文的全體內容,願望對年夜家的進修有所贊助,也願望年夜家多多支撐。