Spring MVC構建程式小Demo
1.首先,匯入SpringMVC的jar包
2.新增web.xml配置檔案中關於SpringMVC的配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="2.5">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 可以自定義servlet.xml配置檔案的位置和名稱,預設為WEB-INF目錄下,名稱為[<servlet-name>]-servlet.xml,如spring-servlet.xml -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
3.建立springmvc-servlet.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/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.1.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">
<!-- scan the package and the sub package -->
<context:component-scan base-package="com.hello.login"/>
<!-- don't handle the static resource -->
<mvc:default-servlet-handler />
<!-- if you use annotation you must configure following setting -->
<mvc:annotation-driven />
<!-- configure the InternalResourceViewResolver -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
id="internalResourceViewResolver">
<!-- 字首 -->
<property name="prefix" value="/WEB-INF/jsp/" />
<!-- 字尾 -->
<property name="suffix" value=".jsp" />
</bean>
</beans>
4.在WEB-INF下建立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>
<h1>登入系統</h1>
<hr>
<form action="com/hello/login/LoginController" method="post">
使用者名稱:<input type="text" id="username" name="username"/><br/>
密 碼:<input type="password" id="password" name="password"/><br/>
<input type="submit" value="登入"/>
<input type="reset" value="重置"/>
</form>
</body>
</html>
5.建立一個User的POJO類
package com.hello.entity;
public class User {
private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
6.在src下建立LoginController
package com.hello.login;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import com.hello.entity.User;
@Controller
@RequestMapping(value="/com/hello/login")
public class LoginController {
@RequestMapping(value="/LoginController",method=RequestMethod.POST)
@ResponseBody
public User login(@RequestParam("username") String username,@RequestParam("password") String password){
System.out.println("LoginController start");
User user = new User();
user.setUsername(username);
System.out.println("urername="+username);
user.setPassword(password);
System.out.println("password="+password);
return user;
}
}
這裡返回的是JSON字串,使用註解@ResponseBody
需要匯入jar包
我在構建工程時一直出錯,後來才發現,Spring4以上必須要使用jackson2.6以上
跟蹤SpringMVC請求
每當使用者在瀏覽器中點選連結或提交表單時,請求就開始工作了。
請求的第一站就是Spring的DispatcherServlet,它是前端控制器,任務是將請求傳送給Spring MVC控制器。控制器是一個用來處理請求的Spring元件。在典型的應用程式中可能會有多個控制器,DispatcherServlet需要知道將請求傳送給哪個控制器。所以DispatcherServlet會查詢一個或多個處理器對映handler mapping來確定請求的下一站在哪裡。handler mapping根據請求所攜帶的URL資訊來進行決策。
一旦選擇了合適的控制器,DispatcherServlet會將請求傳送給選中的控制器,然後就耐心等待控制器處理這些資訊。處理完之後,通常會產生一些資訊,這些資訊需要返回給使用者並在瀏覽器顯示。這些資訊被稱為模型。控制器做的最後一件事就是將這些模型資料打包,並且標示出用於渲染輸出的檢視名。接下來會將請求連同模型和檢視名傳送回DispatcherServlet。
DispatcherServlet將會使用檢視解析器來將邏輯檢視名匹配為一個特定的檢視實現。然後在檢視實現中交付模型資料,請求的任務也就完成了。