@RequestMapping

来源:http://www.cnblogs.com/White-destiny/archive/2016/05/26/5532816.html
-Advertisement-
Play Games

1.web.xml 配置: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <span style="font-size: 15px;"><servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org. ...


1.web.xml 配置:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <span style="font-size: 15px;"><servlet>     <servlet-name>dispatcher</servlet-name>     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>     <init-param>         <description>載入/WEB-INF/spring-mvc/目錄下的所有XML作為Spring MVC的配置文件</description>         <param-name>contextConfigLocation</param-name>         <param-value>/WEB-INF/spring-mvc/*.xml</param-value>     </init-param>     <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping>     <servlet-name>dispatcher</servlet-name>     <url-pattern>*.htm</url-pattern> </servlet-mapping> </span>

 

  這樣,所有的.htm的請求,都會被DispatcherServlet處理;

初始化 DispatcherServlet 時,該框架在 web 應用程式WEB-INF 目錄中尋找一個名為[servlet-名稱]-servlet.xml的文件,併在那裡定義相關的Beans,重寫在全局中定義的任何Beans,像上面的web.xml中的代碼,對應的是dispatcher-servlet.xml;當然也可以使用<init-param>元素,手動指定配置文件的路徑;dispatcher-servlet.xml 配置:

複製代碼
 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans"
 3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4        xmlns:mvc="http://www.springframework.org/schema/mvc"
 5        xmlns:p="http://www.springframework.org/schema/p"
 6        xmlns:context="http://www.springframework.org/schema/context"
 7        xmlns:aop="http://www.springframework.org/schema/aop"
 8        xmlns:tx="http://www.springframework.org/schema/tx"
 9        xsi:schemaLocation="http://www.springframework.org/schema/beans
10             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
11             http://www.springframework.org/schema/context 
12             http://www.springframework.org/schema/context/spring-context-3.0.xsd
13             http://www.springframework.org/schema/aop 
14             http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
15             http://www.springframework.org/schema/tx 
16             http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
17             http://www.springframework.org/schema/mvc 
18             http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
19             http://www.springframework.org/schema/context 
20             http://www.springframework.org/schema/context/spring-context-3.0.xsd">
21     <!--
22         使Spring支持自動檢測組件,如註解的Controller
23     -->
24     <context:component-scan base-package="com.minx.crm.web.controller"/>
25    
26     <bean id="viewResolver"
27           class="org.springframework.web.servlet.view.InternalResourceViewResolver"
28           p:prefix="/WEB-INF/jsp/"
29           p:suffix=".jsp" />
30 </beans>
複製代碼

 

2.spring mvc處理方法支持如下的返回方式:ModelAndView, Model, ModelMap, Map,View, String, void

 

ModelAndView

 

  1.    
  2. @RequestMapping("/show1") 
  3. public ModelAndView show1(HttpServletRequest request, 
  4.            HttpServletResponse response) throws Exception { 
  5.        ModelAndView mav = new ModelAndView("/demo2/show"); 
  6.        mav.addObject("account", "account -1"); 
  7.        return mav; 
  8.    } 

通過ModelAndView構造方法可以指定返回的頁面名稱,也可以通過setViewName()方法跳轉到指定的頁面 , 使用addObject()設置需要返回的值,addObject()有幾個不同參數的方法,可以預設和指定返回對象的名字。 調用addObject()方法將值設置到一個名為ModelMap的類屬性,ModelMap是LinkedHashMap的子類, 具體請看類。

 

 

Model 是一個介面, 其實現類為ExtendedModelMap,繼承了ModelMap類。

model.addAttribute("pojo", pojo);

Map 

 

  1. @RequestMapping("/demo2/show") 
  2.     public Map<String, String> getMap() { 
  3.         Map<String, String> map = new HashMap<String, String>(); 
  4.         map.put("key1", "value-1"); 
  5.         map.put("key2", "value-2"); 
  6.         return map; 
  7.     } 

 

在jsp頁面中可直通過${key1}獲得到值, map.put()相當於request.setAttribute方法。 寫例子時發現,key值包括 - . 時會有問題.

View 可以返回pdf excel等,暫時沒詳細瞭解。

 

 

String 指定返回的視圖頁面名稱,結合設置的返回地址路徑加上頁面名稱尾碼即可訪問到。

 

註意:如果方法聲明瞭註解@ResponseBody ,則會直接將返回值輸出到頁面。 例如:

  1. @RequestMapping(value = "/something", method = RequestMethod.GET) 
  2. @ResponseBody 
  3. public String helloWorld()  { 
  4. return"Hello World"; 

上面的結果會將文本"Hello World "直接寫到http響應流。

  1. @RequestMapping("/welcome") 
  2. public String welcomeHandler() { 
  3.   return"center"; 

對應的邏輯視圖名為“center”,URL= prefix首碼+視圖名稱 +suffix尾碼組成。
void  如果返回值為空,則響應的視圖頁面對應為訪問地址

  1. @RequestMapping("/welcome") 
  2. publicvoid welcomeHandler() {} 

此例對應的邏輯視圖名為"welcome"。

小結:

1.使用 String 作為請求處理方法的返回值類型是比較通用的方法,這樣返回的邏輯視圖名不會和請求 URL 綁定,具有很大的靈活性,而模型數據又可以通過 ModelMap 控制。 2.使用void,map,Model 時,返回對應的邏輯視圖名稱真實url為:prefix首碼+視圖名稱 +suffix尾碼組成。 3.使用String,ModelAndView返回視圖名稱可以不受請求的url綁定,ModelAndView可以設置返回的視圖名稱。

 

 

 

Model model,HttpServletRequest request, ModelMap map聲明變數

 

request.getSession().setAttribute("test", "haiwei2Session"); request.setAttribute("test", "haiwei1request"); map.addAttribute("test", "haiweiModelMap"); model.addAttribute("test", "haiweiModel");
我通過${test}這個方式取值,優先取Model和ModelMap的,Model和ModelMap是同一個東西,誰最後賦值的就取誰的,然後是request,最後是從session中獲取

 

 第一個Controller

  1. package com.minx.crm.web.controller;  
  2.   
  3. import org.springframework.stereotype.Controller;  
  4. import org.springframework.web.bind.annotation.RequestMapping;  
  5. @Controller  
  6. public class IndexController {  
  7.     @RequestMapping("/index")  
  8.     public String index() {  
  9.         return "index";  
  10.     }  
  11. }  
package com.minx.crm.web.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
    @RequestMapping("/index")
    public String index() {
        return "index";
    }
}

@Controller註解標識一個控制器,@RequestMapping註解標記一個訪問的路徑(/index.htm),return "index"標記返回視圖(index.jsp);

註:如果@RequestMapping註解在類級別上,則表示一相對路徑,在方法級別上,則標記訪問的路徑;

從@RequestMapping註解標記的訪問路徑中獲取參數:

Spring MVC 支持RESTful風格的URL參數,如:

  1. @Controller  
  2. public class IndexController {  
  3.   
  4.     @RequestMapping("/index/{username}")  
  5.     public String index(<span style="color: rgb(255, 0, 0);">@PathVariable</span>("username") String username) {  
  6.         System.out.print(username);  
  7.         return "index";  
  8.     }  
  9. }  
@Controller
public class IndexController {

    @RequestMapping("/index/{username}")
    public String index(@PathVariable("username") String username) {
        System.out.print(username);
        return "index";
    }
}

@RequestMapping中定義訪問頁面的URL模版,使用{}傳入頁面參數,使用@PathVariable 獲取傳入參數,即可通過地址:http://localhost:8080/crm/index/tanqimin.htm 訪問;

根據不同的Web請求方法,映射到不同的處理方法:

使用登陸頁面作示例,定義兩個方法分辨對使用GET請求和使用POST請求訪問login.htm時的響應。可以使用處理GET請求的方法顯示視圖,使用POST請求的方法處理業務邏輯;

  1. @Controller  
  2. public class LoginController {  
  3.     @RequestMapping(value = "/login", method = RequestMethod.GET)  
  4.     public String login() {  
  5.         return "login";  
  6.     }  
  7.     @RequestMapping(value = "/login", method = RequestMethod.POST)  
  8.     public String login2(HttpServletRequest request) {  
  9.             String username = request.getParameter("username").trim();  
  10.             System.out.println(username);  
  11.         return "login2";  
  12.     }  
  13. }  
@Controller
public class LoginController {
    @RequestMapping(value = "/login", method = RequestMethod.GET)
    public String login() {
        return "login";
    }
    @RequestMapping(value = "/login", method = RequestMethod.POST)
    public String login2(HttpServletRequest request) {
            String username = request.getParameter("username").trim();
            System.out.println(username);
        return "login2";
    }
}

在視圖頁面,通過地址欄訪問login.htm,是通過GET請求訪問頁面,因此,返回登陸表單視圖login.jsp;當在登陸表單中使用POST請求提交數據時,則訪問login2方法,處理登陸業務邏輯;

防止重覆提交數據,可以使用重定向視圖:

  1. return "redirect:/login2"  
return "redirect:/login2"

可以傳入方法的參數類型:

 

 

  1. <strong>@RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session) {  
  3.     String username = request.getParameter("username");  
  4.     System.out.println(username);  
  5.     return null;  
  6. }</strong>  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session) {
	String username = request.getParameter("username");
	System.out.println(username);
	return null;
}

 

可以傳入HttpServletRequestHttpServletResponseHttpSession,值得註意的是,如果第一次訪問頁面,HttpSession沒被創建,可能會出錯;

其中,String username = request.getParameter("username");可以轉換為傳入的參數:

 

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session,@RequestParam("username") String username) {  
  3.     String username = request.getParameter("username");  
  4.     System.out.println(username);  
  5.     return null;  
  6. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(HttpServletRequest request, HttpServletResponse response, HttpSession session,@RequestParam("username") String username) {
	String username = request.getParameter("username");
	System.out.println(username);
	return null;
}

 

使用@RequestParam 註解獲取GET請求或POST請求提交的參數;

獲取Cookie的值:使用@CookieValue :

獲取printwriter:

可以直接在Controller的方法中傳入PrintWriter對象,就可以在方法中使用:

 

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(PrintWriter out, <span style="color: rgb(255, 0, 0);">@RequestParam</span>("username") String username) {  
  3.     out.println(username);  
  4.     return null;  
  5. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(PrintWriter out, @RequestParam("username") String username) {
	out.println(username);
	return null;
}

 

 

獲取表單中提交的值,並封裝到POJO中,傳入Controller的方法里:

POJO如下(User.java):

 

  1. public class User{  
  2.     private long id;  
  3.     private String username;  
  4.     private String password;  
  5.   
  6.     …此處省略getter,setter...  
  7. }  
public class User{
	private long id;
	private String username;
	private String password;

	…此處省略getter,setter...
}

 

 

通過表單提交,直接可以把表單值封裝到User對象中:

 

  1. @RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(PrintWriter out, User user) {  
  3.     out.println(user.getUsername());  
  4.     return null;  
  5. }  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(PrintWriter out, User user) {
	out.println(user.getUsername());
	return null;
}

 

 

可以把對象,put 入獲取的Map對象中,傳到對應的視圖:

 

 

  1. <strong>@RequestMapping(value = "login", method = RequestMethod.POST)  
  2. public String testParam(User user, Map model) {  
  3.     model.put("user",user);  
  4.     return "view";  
  5. }</strong>  
@RequestMapping(value = "login", method = RequestMethod.POST)
public String testParam(User user, Map model) {
	model.put("user",user);
	return "view";
}

 

在返回的view.jsp中,就可以根據key來獲取user的值(通過EL表達式,${user }即可);

Controller中方法的返回值:

void:多數用於使用PrintWriter輸出響應數據;

String 類型:返回該String對應的View Name

任意類型對象:

返回ModelAndView

自定義視圖(JstlView,ExcelView):

 攔截器(Inteceptors):

 

 

  1. <strong>public class MyInteceptor implements HandlerInterceptor {  
  2.     public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object o)   
  3.         throws Exception {  
  4.         return false;  
  5.     }  
  6.     public void postHandle(HttpServletRequest request, HttpServletResponse response, Object o, ModelAndView mav)   
  7.         throws Exception {  
  8.     }  
  9.     public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object o, Exception excptn)   
  10.         throws Exception {  
  11.     }  
  12. }</strong>  
public class MyInteceptor implements HandlerInterceptor {
	public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object o) 
		throws Exception {
		return false;
	}
	public void postHandle(HttpServletRequest request, HttpServletResponse response, Object o, ModelAndView mav) 
		throws Exception {
	}
	public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object o, Exception excptn) 
		throws Exception {
	}
}

 

攔截器需要實現HandleInterceptor介面,並實現其三個方法:

preHandle:攔截器的前端,執行控制器之前所要處理的方法,通常用於許可權控制、日誌,其中,Object o表示下一個攔截器;

postHandle:控制器的方法已經執行完畢,轉換成視圖之前的處理;

afterCompletion:視圖已處理完後執行的方法,通常用於釋放資源;

MVC的配置文件中,配置攔截器與需要攔截的URL

  1. <mvc:interceptors>  
  2.     <mvc:interceptor>  
  3.         <mvc:mapping path="/index.htm" />  
  4.         <bean class="com.minx.crm.web.interceptor.MyInterceptor" />  
  5.     </mvc:interceptor>  
  6. </mvc:interceptors>  
<mvc:interceptors>
	<mvc:interceptor>
		<mvc:mapping path="/index.htm" />
		<bean class="com.minx.crm.web.interceptor.MyInterceptor" />
	</mvc:interceptor>
</mvc:interceptors>

 

國際化:

MVC配置文件中,配置國際化屬性文件:

 

  1. <bean id="messageSource"  
  2.     class="org.springframework.context.support.ResourceBundleMessageSource"  
  3.     p:basename="message">  
  4. </bean>  
<bean id="messageSource"
	class="org.springframework.context.support.ResourceBundleMessageSource"
	p:basename="message">
</bean>

 

那麼,Spring就會在項目中搜索相關的國際化屬性文件,如:message.propertiesmessage_zh_CN.properties

VIEW中,引入Spring標簽:<%@taglib uri="http://www.springframework.org/tags" prefix="spring" %>,使用<spring:message code="key" />調用,即可;

如果一種語言,有多個語言文件,可以更改MVC配置文件為:

 

  1. <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">  
  2.     <property name="basenames">  
  3.         <list>  
  4.             <value>message01</value>  
  5.             <value>message02</value>  
  6.             <value>message03</value>  
  7.         </list>  
  8.     </property>  
  9. </bean>  

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

-Advertisement-
Play Games
更多相關文章
  • C/C++ 預處理元編程 從一個問題開始 以下代碼存在結構性重覆,如何消除? ~~~cpp // EventId.h enum EventId { setupEventId = 0x4001, cfgEventId, recfgEventId, releaseEventId // ... }; ~~ ...
  • I am using `&`: why isn't the process running in the background? No problem. We won't show you that ad again. Why didn't you like it? Uninteresting Mi ...
  • 1.安裝方法1:Mac電腦上面安裝很簡單,直接下載需要的版本解壓即可: 下載網址 https://www.mongodb.com/download-center?jmp=nav#community 方法2: brew install mongodb 2. mongodb 數據預設存在/data/db ...
  • 上篇對python中的字元串進行了列舉和簡單說明,但這些方法太多,逐一背下效率實在太低,下麵我來對這些方法安裝其功能進行總結: 1.字母大小寫相關(中文無效) 1.1 S.upper() -> string 返回一個字母全部大寫的副本 1.2 S.lower() -> string 返回一個字母全是 ...
  • 當我們創建一個集合以後,可以直接使用system.out.println()來列印這個集合,但是,我們需要可以對每個元素進行操作,所以,這裡需要使用迭代器來遍歷集合 迭代器其實就是集合取出元素的方式 調用List對象的iterator()方法,得到Iterator對象,這個類是個介面類型,因此可以知 ...
  • 當今的技術領域,開發者人數最為之多的群體便是web領域,與之相關崗位的包括前端工程師,後臺工程師,移動端開發工程師等等。然而由於受時代浮躁氛圍的影響,許多開發者對最為基礎的HTTP協議都不甚瞭解,這也正是本篇文章的目的--簡單總結一下 瞭解HTTP協議之前你需要掌握的一些基礎知識,基本術語等等。 基 ...
  • 今天主要內容是線性回歸的介紹 原則:在進行任何正式分析之前,先要對數據進行可視化分析,看看直觀效果。 當沒有任何其他附加信息的情況下,對一個變數的最佳假設也是最基本的假設,就是其均值。(前提是使用平方誤差作為衡量準則時) 第二層信息就是可以被利用的二元或多元區分型的信息,這類信息可以輔助我們的預測。 ...
  • 本節大綱: 一:在執行list()函數或者dict()函數首先是調用list()函數或者dict()方法會自動調用該函數的__init__方法進行數據的初始化,list()函數通過一個可迭代的對象,用for迴圈進行遍歷插值。 上述的過程:首先list()函數調用本身的__init__方法進行數據的初 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...