1. 程式人生 > >SpringMVC教程2[處理響應請求]

SpringMVC教程2[處理響應請求]

一,基本操作

1.響應請求的方式

不響應 | void+@ResponseBody註解 |

ModelAndView | 通過setViewName方法 | 直接指定響應頁面 | 返回值為String型別,返回結果指定跳轉地址 |

重定向 | 跳轉地址前加redirect:字首即可 |

HttpServletRequest和HttpServletResponse | 形參中宣告這兩個變數。然後通過相關api跳轉|

上一篇看過ModelAndView的響應方式這裡就從void開始

1.返回void

返回值為void時,方法中可以不用做任何返回,在瀏覽器中,springmvc會預設去查詢和方法同名的頁面作為方法的檢視返回。 如果確實不需要該方法返回頁面,可以使用@ResponseBody註解,表示一個請求到此為止。

@RequestMapping("/test1")
@ResponseBody
public void test1() {    
   System.out.println("test1");
}

下面講述各種請求的方式與實現程式碼,結果就不一一演示了

配置web.xml檔案

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>SpringMVC-01-hello</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
	<servlet>
		<servlet-name>springmvc</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>classpath:Spring-MVC.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>

	<!-- Map all requests to the DispatcherServlet for handling -->
	<servlet-mapping>
		<servlet-name>springmvc</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
</web-app>

配置spring-mvc的配置檔案

<?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:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
		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-4.3.xsd">
	<!-- 開啟掃描 -->
	<context:component-scan base-package="com.sxt"/>
	
	<!-- 開啟SpringMVC註解的方式 -->
	<mvc:annotation-driven></mvc:annotation-driven>
	
	<!-- 配置檢視解析器 和Controller的一個方法一起使用後面有標記-->
	<!--  <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
			<property name="prefix" value="/"/>
			<property name="suffix" value=".jsp"/>
	</bean>  -->
</beans>

自定義的Controller,index的jsp頁面內容自定義

在這裡插入圖片描述

package com.sxt;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

@Controller
@RequestMapping("/hello")
public class HelloController {

	//ModelAndView,響應方式
	@RequestMapping("/hello1")
	public ModelAndView hello1(){
		System.out.println("-----hello1---");
		ModelAndView m = new ModelAndView();
		m.setViewName("/index.jsp");
		return m;
	}
	//返回一個字串
	@RequestMapping("/hello2")
	@ResponseBody//該註解表示一個請求到此結束
	public void  hello2(){
		
		System.out.println("aaaa");
	}
	/*
	 * 此方法需要在spring-mvc的配置檔案配置檢視解析器,自動新增index的字首字尾,開啟後可用這個方法
	@RequestMapping("/h1")
	public String hello3(){
		System.out.println("111");
		return "index";
	}*/
	//重定向跳轉 :返回路徑注意: 返回的字元帶"/“表示從根目錄下開始找,不帶”/"從當前目錄下查詢
	@RequestMapping("/h2")
	public String hello4(){
		System.out.println("111");
		return "redirect:/index.jsp";
	}
	//通過request和response
	@RequestMapping("/h5")
	public void hello5(HttpServletRequest request,HttpServletResponse response) throws IOException, Exception{
		System.out.println("333");
		request.getRequestDispatcher("/index.jsp").forward(request, response);
	}

}

上面方法除了檢視解析器需要在配置檔案配置,其餘的都一樣

@RequertMapping的說明

1.對映路徑 @RequestMapping最基本的功能,用法:

@RequestMapping("/delete")
 public String delete(){
 	System.out.println("波波烤鴨:刪除資料操作....");
 	return "/hello";
 }

窄化請求 窄化請求用來限定請求路徑,即將@RequestMapping放在類上,這樣,方法的請求路徑是類上的@ReqmestMapping+方法上的@RequestMapping 在這裡插入圖片描述 請求方法限定 在這裡插入圖片描述

基本資料型別

java基本資料型別+string 使用基本資料型別時,引數名稱和瀏覽器傳來的引數的key一致,這樣才能實現自動對映

/**
 * 接收引數
 *    基本資料型別
 * @param id
 * @param name
 * @return
 */ @RequestMapping("add") public String add(int id,String name){ System.out.println(id+"---"+name); return "/hello"; } 

在這裡插入圖片描述

如果引數名和瀏覽器傳來的key不一致,可以通過@RequestParam來解決。如下

/**
 * 接收引數
 *    基本資料型別
 *    請求引數如果和形參名稱不一致可以通過@RequestParam類指定
 * @param id
 * @param name
 * @return
 */ @RequestMapping("add") 
 public String add(int id,@RequestParam("username")String name){
  			System.out.println(id+"---"+name); 
 			 return "/hello";
   }

在這裡插入圖片描述

加@ReuestParam,如果為重新指定引數名,則預設的引數名依然是原本的引數名,同時也要注意,添加了這個註解後,對應的引數將成為必填引數.如果沒有傳遞相關的引數,則會拋異常 但如果不想傳引數,也有兩種方式解決

1.通過required屬性指定該引數不是必填的

/**
 * 接收引數
 *    基本資料型別
 *    請求引數如果和形參名稱不一致可以通過@RequestParam類指定
 * @param id
 * @param name
 * @return
 */ @RequestMapping("add")
  public String add(int id ,@RequestParam(value="username",required=false)String name){ 
 				 System.out.println(id+"---"+name); 
 				 return "/hello";
   }

2.通過defaultValue屬性給指定引數一個預設值

/**
 * 接收引數
 *    基本資料型別
 *    請求引數如果和形參名稱不一致可以通過@RequestParam類指定
 * @param id
 * @param name
 * @return
 */ @RequestMapping("add")
  public String add(int id ,@RequestParam(value="username",defaultValue="kaoya")String name){
   					System.out.println(id+"---"+name);
   						 return "/hello";
     }

物件

建立一個book物件 和user物件

package com.sxt.bean;

public class Book {
	private Integer id;
	
	private String name;

	@Override
	public String toString() {
		return "Book [id=" + id + ", name=" + name + "]";
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
}

package com.sxt.bean;

import java.util.Arrays;
import java.util.Date;
import java.util.List;

public class User {
	private Integer id;

	private Integer age;

	private String unama;
	private String[] favorites;

	private List<String> list;

	private Date birth;

	private Book book;

	@Override
	public String toString() {
		return "User [id=" + id + ", age=" + age + ", unama=" + unama + ", favorites=" + Arrays.toString(favorites)
				+ ", list=" + list + ", birth=" + birth + ", book=" + book + "]";
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public Integer getAge() {
		return age;
	}

	public void setAge(Integer age) {
		this.age = age;
	}

	public String getUnama() {
		return unama;
	}

	public void setUnama(String unama) {
		this.unama = unama;
	}

	public String[] getFavorites() {
		return favorites;
	}

	public void setFavorites(String[] favorites) {
		this.favorites = favorites;
	}

	public List<String> getList() {
		return list;
	}

	public void setList(List<String> list) {
		this.list = list;
	}

	public Date getBirth() {
		return birth;
	}

	public void setBirth(Date birth) {
		this.birth = birth;
	}

	public Book getBook() {
		return book;
	}

	public void setBook(Book book) {
		this.book = book;
	}

	
}

建立配置檔案

<?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:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
		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-4.3.xsd">
	<!-- 開啟掃描 -->
	<context:component-scan base-package="com.sxt"/>
	
	<!-- 開啟SpringMVC註解的方式 -->
	<mvc:annotation-driven></mvc:annotation-driven>
</beans>

建立user.jsp頁面

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!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>Insert title here</title>
</head>
<body>
<form action="add" method="post">
	<table>
		<tr>
			<td>編號</td>
			<td><input type="text" name="id"></td>
		</tr>
		<tr>
			<td>名字</td>
			<td><input type="text" name="unama"></td>
		</tr>
		<tr>
			<td>年齡</td>
			<td><input type="text" name="age"></td>
		</tr>
		<tr>
			<td>id</td>
			<td><input type="text" name="book.id"></td>
		</tr>
		<tr>
			<td>作者</td>
			<td><input type="text" name="book.name"></td>
		</tr>
		<tr>
			<td><input type="submit" value="新增"></td>
		</tr>
	</table>
</form>

</body>
</html>

建立自定義的Controller

package com.sxt;

import java.util.Date;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.sxt.bean.User;

@Controller
public class UserController {

	@RequestMapping("/add")//物件接受資料方法
	@ResponseBody
	public void add(User user) {
		System.out.println(user);
	}

}

測試

在這裡插入圖片描述 在這裡插入圖片描述

因為測試的物件所以其他都沒給值

陣列與集合的資料接受

bean層和配置檔案,web.xml檔案都一樣

package com.sxt;

import java.util.Date;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.sxt.bean.User;

@Controller
public class UserController {
	//陣列資料獲取
	@RequestMapping("/add2")
	@ResponseBody
	public void add3(User user) {
		System.out.println(user);
		String[] favorites = user.getFavorites();
		for (String f : favorites) {
			System.out.println(f);
		}

	}
	//集合資料獲取
	@RequestMapping("/add3")
	@ResponseBody
	public void add4(User user) {
		System.out.println(user);
		System.out.println(user.getList());

	}

}

建立對應的jsp頁面

獲取陣列類的jsp頁面 在這裡插入圖片描述 獲取集合類的jsp頁面 在這裡插入圖片描述

測試訪問路徑

陣列的輸出結果

在這裡插入圖片描述

集合輸出結果

在這裡插入圖片描述

總結: 1.陣列(無論是基本資料型別還是物件陣列)都可以直接寫在介面引數中。 2.集合(無論是基本資料型別還是物件)都需要一個包裝類將其包裝起來,不能直接寫在介面引數中。 3.對於基本資料型別,陣列和集合在表單中的寫法是一樣的 4.對於物件資料型別,陣列和集合在表單中的寫法是一樣的

Data型別接受

接受資料型別是Data型別的需要通過轉換器進行接受

自定義Controller

建立自定義的轉換器

package com.sxt;

import java.util.Date;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.sxt.bean.User;

@Controller
public class UserController {
	@RequestMapping("/add4")
	@ResponseBody
	public void add4(Date d) {
		System.out.println(d);

	}

}

package com.sxt;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.springframework.core.convert.converter.Converter;
/**
 * Data型別轉換器
 * @author Administrator
 *
 */
public class Convert implements Converter<String, Date>{

	@Override
	public Date convert(String arg0) {
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
		try {
			return format.parse(arg0);
		} catch (ParseException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return null;
	}

}

在spring-mvc.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:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
		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-4.3.xsd">
		<!-- 開啟掃描 -->
	<context:component-scan base-package="com.sxt"/>
	
	<!-- 開啟SpringMVC註解的方式 -->
	<mvc:annotation-driven conversion-service="formattingConversionServiceFactoryBean"></mvc:annotation-driven>
	<bean class="org.springframework.format.support.FormattingConversionServiceFactoryBean" id="formattingConversionServiceFactoryBean">
		<property name="converters">
			<set>
				<bean class="com.sxt.Convert"/>
			</set>
		</property>
	</bean>
	
</beans>

在這裡插入圖片描述

測試

在這裡插入圖片描述 在這裡插入圖片描述

響應資料

3.1ModelAndView 3.2HttpServletRequest 3.3HttpSession 3.4Map

建立自定義controller

package com.sxt;

import java.util.Map;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.SessionAttributes;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class HelloController {
	@RequestMapping("query1")
	public String add(Map<String, Object> map){
		map.put("msg", "aaaa");
		return "/index.jsp";
	}
	
	@RequestMapping("query2")
	public String add1(Model m){
		m.addAttribute("msg", "bbb");
		return "/index.jsp";
	}
	
	@RequestMapping("query3")
	public String add2(ModelMap mm){
		mm.addAttribute("msg", "ccc");
		return "/index.jsp";
	}
	
	@RequestMapping("query4")
	public ModelAndView add3(){
			ModelAndView view = new ModelAndView();
			view.addObject("msg", "ddd");
			view.setViewName("index.jsp");
			return view;
	}
}

建立springmvc配置檔案

<?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:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
		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-4.3.xsd">
		<!-- 開啟掃描 -->
	<context:component-scan base-package="com.sxt"/>
	
	<!-- 開啟SpringMVC註解的方式 -->
	<mvc:annotation-driven ></mvc:annotation-driven>
	
</beans>

建立index.jsp頁面

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!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>Insert title here</title>
</head>
<body>
${msg}

<h3>request:${requestScope.msg }</h3>
	<h3>session:${sessionScope.msg }</h3>
	<h3>application:${applicationScope.msg }</h3>
</body>
</html>
request:${requestScope.msg }
session:${sessionScope.msg }
application:${applicationScope.msg }
檢查msg是儲存在哪一個作用域的,結果證明都是儲存在request作用域的

注意:加上@SessionAttributes這個註解是將資料儲存在session作用域中的.

在這裡插入圖片描述

post方式提交中文亂碼問題

在web.xml檔案新增如下程式碼

<!-- spring框架提供的字符集過濾器 -->
 <!-- spring Web MVC框架提供了org.springframework.web.filter.CharacterEncodingFilter用於解決POST方式造成的中文亂碼問題  --> 
 <filter>
 	 <filter-name>encodingFilter</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>encodingFilter</filter-name>
 	  	  	  <url-pattern>/*</url-pattern> 
 </filter-ma