SpringMVC【引數繫結、資料回顯、檔案上傳】

Java3y發表於2019-02-26

前言

本文主要講解的知識點如下:

  • 引數繫結
  • 資料回顯
  • 檔案上傳

引數繫結

我們在Controller使用方法引數接收值,就是把web端的值給接收到Controller中處理,這個過程就叫做引數繫結

預設支援的引數型別

從上面的用法我們可以發現,我們可以使用request物件、Model物件等等,其實是不是可以隨便把引數寫上去都行???其實並不是的…

Controller方法預設支援的引數型別有4個,這4個足以支撐我們的日常開發了

  • HttpServletRequest
  • HttpServletResponse
  • HttpSession
  • Model

引數的繫結過程

一般地,我們要用到自定義的引數繫結就是上面所講的日期型別轉換以及一些特殊的需求….對於平常的引數繫結,我們是無需使用轉換器的,SpringMVC就已經幫我們幹了這個活了…

這裡寫圖片描述

自定義繫結引數【老方式、全部Action均可使用】

在上一篇我們已經簡單介紹了怎麼把字串轉換成日期型別了【使用的是WebDataBinder方式】…其實那是一個比較老的方法,我們可以使用SpringMVC更推薦的方式…

在上次把字串轉換成日期型別,如果使用的是WebDataBinder方式的話,那麼該轉換僅僅只能在當前Controller使用…如果想要全部的Controller都能夠使用,那麼我們可以使用WebBindingInitializer方式

如果想多個controller需要共同註冊相同的屬性編輯器,可以實現PropertyEditorRegistrar介面,並注入webBindingInitializer中。

實現介面


public class CustomPropertyEditor implements PropertyEditorRegistrar {

	@Override
	public void registerCustomEditors(PropertyEditorRegistry binder) {
		binder.registerCustomEditor(Date.class, new CustomDateEditor(
				new SimpleDateFormat("yyyy-MM-dd HH-mm-ss"), true));
		
	}

}
複製程式碼

配置轉換器

注入到webBindingInitializer中

	<!-- 註冊屬性編輯器 -->
	<bean id="customPropertyEditor" class="cn.itcast.ssm.controller.propertyeditor.CustomPropertyEditor"></bean>
	
	
	<!-- 自定義webBinder -->
	<bean id="customBinder"
		class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
	
		<!-- propertyEditorRegistrars用於屬性編輯器 -->
		 <property name="propertyEditorRegistrars">
			<list>
				<ref bean="customPropertyEditor" />
			</list>
		</property>
	</bean>


	<!-- 註解介面卡 -->
	<bean
		class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
		<!-- 在webBindingInitializer中注入自定義屬性編輯器、自定義轉換器 -->
		<property name="webBindingInitializer" ref="customBinder"></property>
	</bean>


複製程式碼

自定義引數轉換器【新方式、推崇方式】

上面的方式是物件較老的,現在我們一般都是實現Converter介面來實現自定義引數轉換…我們就來看看實現Converter比上面有什麼好

配置日期轉換器


public class CustomDateConverter implements Converter<String, Date> {

	@Override
	public Date convert(String source) {
		try {
			//進行日期轉換
			return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(source);
			
		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}

}
複製程式碼

配置去除字串轉換器


public class StringTrimConverter implements Converter<String, String> {

	@Override
	public String convert(String source) {
		try {
			//去掉字串兩邊空格,如果去除後為空設定為null
			if(source!=null){
				source = source.trim();
				if(source.equals("")){
					return null;
				}
			}
			
		} catch (Exception e) {
			e.printStackTrace();
		}
		return source;
	}
}

複製程式碼

從上面可以得出,我們想要轉換什麼內容,就直接實現介面,該介面又是支援泛型的,閱讀起來就非常方便了…

配置轉換器



	<!-- 轉換器 -->
	<bean id="conversionService"
		  class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
		<property name="converters">
			<list>
				<bean class="cn.itcast.ssm.controller.converter.CustomDateConverter"/>
				<bean class="cn.itcast.ssm.controller.converter.StringTrimConverter"/>
			</list>
		</property>
	</bean>


	<!-- 自定義webBinder -->
	<bean id="customBinder"
		class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
		<!-- 使用converter進行引數轉 -->
		<property name="conversionService" ref="conversionService" />
	</bean>


	<!-- 註解介面卡 -->
	<bean
		class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
		<!-- 在webBindingInitializer中注入自定義屬性編輯器、自定義轉換器 -->
		<property name="webBindingInitializer" ref="customBinder"></property>
	</bean>


	
複製程式碼

如果是基於<mvc:annotation-driven>的話,我們是這樣配置的


<mvc:annotation-driven conversion-service="conversionService">
</mvc:annotation-driven>
<!-- conversionService -->
	<bean id="conversionService"
		class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
		<!-- 轉換器 -->
		<property name="converters">
			<list>
				<bean class="cn.itcast.ssm.controller.converter.CustomDateConverter"/>
				<bean class="cn.itcast.ssm.controller.converter.StringTrimConverter"/>
			</list>
		</property>
	</bean>
複製程式碼

@RequestParam註解

我們一般使用的引數繫結都有遵循的規則:方法引數名要與傳遞過來的name屬性名相同。

在預設的情況下,只有名字相同,SpringMVC才會幫我們進行引數繫結…

如果我們使用@RequestParam註解的話,我們就可以使方法引數名與傳遞過來的name屬性名不同…

該註解有三個變數

  • value【指定name屬性的名稱是什麼】
  • required【是否必須要有該引數】
  • defaultvalue設定預設值

例子:我們的方法引數叫id,而頁面帶過來的name屬性名字叫item_id,一定需要該引數


public String editItem(@RequestParam(value="item_id",required=true) String id) {

}
複製程式碼

Controller方法返回值

Controller方法的返回值其實就幾種型別,我們來總結一下….

  • void
  • String
  • ModelAndView
  • redirect重定向
  • forward轉發

資料回顯

其實資料回顯我們現在的話就一點也不陌生了….我們剛使用EL表示式的時候就已經學會了資料回顯了,做SSH專案的時候也有三圈問題的資料回顯…

在頁面上資料回顯本質上就是獲取reqeust域的值..

而在我們SpringMVC中,我們是使用Model來把資料繫結request域物件中的

一般地我們都是使用model.addAttribute()的方式把資料繫結到request域物件中…其實SpringMVC還支援註解的方式

@ModelAttribute註解

我們可以將請求的引數放到Model中,回顯到頁面上

這裡寫圖片描述

上面這種用法和model.addAttribute()的方式是沒啥區別的,也體現不了註解的方便性…

而如果我們要回顯的資料是公共的話,那麼我們就能夠體會到註解的方便性了,我們把公共需要顯示的屬性抽取成方法,將返回值返回就行了。

這裡寫圖片描述

那我們就不用在每一個controller方法通過Model將資料傳到頁面。


SpringMVC檔案上傳

我們使用Struts2的時候,覺得Struts2的檔案上傳方式比傳統的檔案上傳方式好用多了…

blog.csdn.net/hon_3y/arti…

既然我們正在學習SpringMVC,那麼我們也看一下SpringMVC究竟是怎麼上傳檔案的…

配置虛擬目錄

在這次,我們並不是把圖片上傳到我們的工程目錄中…

那為啥不將圖片直接上傳到我們的工程目錄中呢???我們仔細想想,按照我們之前的做法,直接把檔案上傳到工程目錄,而我們的工程目錄是我們寫程式碼的地方 …往往我們需要備份我們的工程目錄。

如果把圖片都上傳到工程目錄中,那麼就非常難以處理圖片了…

因此,我們需要配置Tomcat的虛擬目錄來解決,把上傳的檔案放在虛擬目錄上

又值得注意的是,Idea使用的Tomcat並不能使用傳統的配置方式,也就是修改server.xml方式來配置虛擬目錄,在Idea下好像不支援這種做法

有興趣的同學可以去測試一下:

blog.csdn.net/hon_3y/arti…

那麼我在網上已經找到了對應的解決辦法,就是如果在idea上配置虛擬目錄

blog.csdn.net/LABLENET/ar…

檢測是否配置成功:

這裡寫圖片描述

快速入門

在SpringMVC中檔案上傳需要用到的jar包

  • commons-fileupload-1.2.2.jar
  • commons-io-2.4.jar

配置檔案上傳解析器



    <!-- 檔案上傳 -->
    <bean id="multipartResolver"
          class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <!-- 設定上傳檔案的最大尺寸為5MB -->
        <property name="maxUploadSize">
            <value>5242880</value>
        </property>
    </bean>
複製程式碼

測試的JSP


<%--
  Created by IntelliJ IDEA.
  User: ozc
  Date: 2017/8/11
  Time: 9:56
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>測試檔案上傳</title>
</head>
<body>


<form action="${pageContext.request.contextPath}/upload.action" method="post" enctype="multipart/form-data" >
    <input type="file" name="picture">
    <input type="submit" value="submit">
</form>

</body>
</html>

複製程式碼

值得注意的是,在JSP的name屬性寫的是picture,那麼在Controller方法引數的名稱也是要寫picture的,否則是獲取不到對應的檔案的..


@Controller
public class UploadController {
    @RequestMapping("/upload")
    //MultipartFile該物件就是封裝了圖片檔案
    public void upload(MultipartFile picture) throws Exception {
        System.out.println(picture.getOriginalFilename());
    }
}

複製程式碼
這裡寫圖片描述

總結

  • 在SpringMVC中的業務方法預設支援的引數有四種
    • request
    • response
    • session
    • model
  • 我們的引數繫結(自動封裝引數)是由我們的轉換器來進行繫結的。現在用的一般都是Converter轉換器
  • 在上一章中我們使用WebDataBinder方式來實現對日期格式的轉化,當時僅僅是可用於當前Action的。我們想要讓全部Action都可以使用的話,有兩種方式:
    • 實現PropertyEditorRegistrar(比較老的方式)
    • 實現Converter(新的方式)
  • 引數繫結都有遵循的規則:方法引數名要與傳遞過來的name屬性名相同
    • 我們可以使用@RequestParam註解來具體指定對應的name屬性名稱,這樣也是可以實現引數繫結的。
    • 還能夠配置該引數是否是必須的。
  • Controller方法的返回值有5種:
    • void
    • String
    • ModelAndView
    • redirect重定向
    • forward轉發
  • Model內部就是將資料繫結到request域物件中的。
  • @ModelAttribute註解能夠將資料繫結到model中(也就是request中),如果經常需要繫結到model中的資料,抽取成方法來使用這個註解還是不錯的。
  • idea配置虛擬目其實就是加多一個deployment,然後配置它的應用路徑
  • SpringMVC的檔案上傳就是配置一個上傳解析器,使用MultipartFile來接收帶過來的檔案。

如果文章有錯的地方歡迎指正,大家互相交流。習慣在微信看技術文章,想要獲取更多的Java資源的同學,可以關注微信公眾號:Java3y

相關文章