SpringMVC 學習筆記(一) Hello World
阿新 • • 發佈:2018-04-14
pragma pan 自己掃描 framework print 一個 頁面 poj OS
springMVC概述:
Spring MVC 是目前最主流的MVC 框架之一
Spring MVC 通過一套 MVC 註解,讓 POJO 成為處理請
求的控制器,而無須實現任何接口。
支持 REST 風格的 URL 請求
采用了松散耦合可插拔組件結構,比其他 MVC 框架更具
擴展性和靈活性
第一步:先建立一個javaweb動態項目的工程
工程名稱為springmvc01
2、整個項目的工程如下所示,添加所需的jar包,這裏下載的spring 4.2
3、接下來在web.xml中配置springmvc啟動加載的DispatcherServlet,配置攔截客戶端的所有請求,但是這裏會訪問不到靜態資源文件後面會講解
web.xml
<?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="3.0" > <!-- The front controller of this Spring Web application, responsible for handling all application requests--> <servlet> <servlet-name>springDispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 加載spirng配置文件 --> <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> <!-- 攔截所有請求 --> <servlet-mapping> <servlet-name>springDispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
其中:
<param-value>classpath:spring-mvc.xml</param-value>指定自己創建的spring-mvc的配置文件,配置文件我們放在src目錄下類路徑下
第二步:創建
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.1.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.1.xsd"> <!-- 配置自動掃描包 掃描com.ibigsea.springmvc 包下的類,後期會使用spring進行管理 --> <context:component-scan base-package="com.wst.springmvc.handlers"/> <!-- 配置視圖解析器 如返回helloworld 為 [/WEB-INF/pages/helloworld.jsp] --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 前綴 --> <property name="prefix" value="/WEB-INF/pages/"/> <!-- 後綴 --> <property name="suffix" value=".jsp"/> </bean> </beans>
這裏我們要使用@control這個註解,我們配置自己掃描功能<context:component-scan base-package="com.wst.springmvc.handlers"/>,描述com.wst.springmvc.handlers這個包下面的所有control類文件
InternalResourceViewResolver這個是配置視圖解析器,解析/WEB-INF/pages/這個目錄下的所有的jsp頁面返回給客戶端
4、編寫handler文件,這個類文件處理客戶端轉發過來的請求
package com.wst.springmvc.handlers; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class HelloWrold { /*** * 使用@RequestMapping來註冊映射的請求 * value="/helloworld"中的值必須和 <a href="helloworld">Hello world </a>一一對應 * */ @RequestMapping(value="/helloworld") public String helloworld(){ System.out.println("helloworld is called"); return "sucess"; } }
這裏第一個類必須使用@control進行註解,表示該類是springmvc的handler處理器,第二需要使用RequestMapping對文件進行映射
我們來看index.jsp中的href對應的helloworld就必須和@RequestMapping(value="/helloworld")一一對應起來。當業務處理完成之後,返回sucess字符串,表示的意思就是返回到/WEB-INF/pages/sucess.jsp頁面
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP ‘index.jsp‘ starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <a href="helloworld">Hello world </a> </body> </html>
sucess.jsp的頁面內容如下
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP ‘index.jsp‘ starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> 頁面跳轉成功 </body> </html>
我們來梳理下流程
當用戶點擊index.jsp頁面上的Hello world的時候,將請求轉發給handler中的helloworld函數處理,處理完成後跳轉到web-inf/pages/sucess.jsp頁面
3. 尚矽谷_佟剛_SpringMVC_RequestMapping_修飾類.avi
1.我們來看@requestMapping修飾類
package com.wst.springmvc.handlers; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/springmvc") public class SpringMvcTest { @RequestMapping("/testRequestMapping") public String testRequestMapping(){ return "sucess"; } }
其中:@RequestMapping("/springmvc")當@RequestMapping(value="/springmvc")中只有一個參數的時候,value可以省去
這個時候在類上使用了@RequestMapping("/springmvc")修飾類,這個時候要訪問handler中的testRequestMapping方法,對應的客戶端的url需要改變為下面的訪問形式
http://localhost:8080/Springmvc01/springmvc/testRequestMapping
對應的index.jsp頁面修改為:
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP ‘index.jsp‘ starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <a href="springmvc/testRequestMapping">Hello world </a> </body> </html>
SpringMVC 學習筆記(一) Hello World