前一篇簡單介紹了Spring MVC的一些知識,下面就要開始學習如何把Spring MVC運用到具體的專案中去。
首先還是從一個簡單的Hello World專案說起:
#我機器的開發環境為:
UbuntuSpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現SpringMVC學習系列(2) 之 經典的HelloWorld實現.04(不同作業系統對本系列專案沒有影響);
開發工具:Eclipse For JavaEE;
資料庫:MySql5.5.35;
運行環境:TomCat V7.0;
JDK:JDK SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.7.0_45;
#專案工程為:Dynamic Web Project;
一、專案依賴的jar套件:
SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.Spring框架依賴的jar套件:
#日誌:commons-logging-SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.3.jar;
JSTL支援:jakarta-taglibs-standard-SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.SpringMVC學習系列(2) 之 經典的HelloWorld實現中的jstl.jar和standard.jar;
#SpringMVC學習系列(2) 之 經典的HelloWorld實現.Spring的jar包:
spring-framework-3.SpringMVC學習系列(2) 之 經典的HelloWorld實現.5.RELEASE/libs中的jar包(這裡為了方便我直接把全部都複製過去了);
把以上的jar套件全部複製到專案的WebContent/WEB-INF/lib目錄中。
二、在/WEB-INF中加入web.xml文件,文件內容如下:
<?xml version="SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.0" encoding="UTF-8"?><web-app> <display-name>SpringMVCLesson</display-name> <servlet> <servlet-name>SpringMVCLesson</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springservlet-config.xml</param-value> </init-param> <load-on-startup>SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現</load-on-startup><!-- load-on-startup必须放在最后 --> </servlet> <!-- Spring MVC配置文件结束 --> <servlet-mapping> <servlet-name>SpringMVCLesson</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
首先是設定DispatcherServlet ,根據系列(SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現)的Spring MVC回應流程圖,可以看出DispatcherServlet主要是攔截請求,然後呼叫對應的Controller和Action,解析和渲染指定的視圖並回傳回應。
其中classpath:springservlet-config.xml指定特定的設定檔為springservlet-config.xml。
load-on-startup>SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現load-on-startup>是启动顺序,让这个Servlet随Servletp容器一起启动,必须放在servlet> 配置的最后。
servlet-mapping中的servlet-name>指定配置的是哪个servlet,url-pattern>则指定拦截哪些请求到该servlet,这里配置的是拦截全部请求。
三、springservlet-config.xml文件配置:
在项目中新建一个resources的Source Folder文件夹,并添加springservlet-config.xml文件。
<?xml version="SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現.0" encoding="UTF-8"?><beans> <!-- 默认的注解映射的支持 --> <annotation-driven></annotation-driven> <!-- 如果当前请求为“/”时,则转发到“/helloworld/index” --> <view-controller></view-controller> <!-- 静态资源映射 --> <resources></resources> <resources></resources> <resources></resources> <resources></resources> <resources></resources> <!-- 当上面要访问的静态资源不包括在上面的配置中时,则根据此配置来访问 --> <default-servlet-handler></default-servlet-handler> <!-- 开启controller注解支持 --> <!-- use-default-filters="false" 只扫描指定的注解 --> <component-scan> <include-filter></include-filter> </component-scan> <!-- 视图解析器 --> <bean> <property></property> <property></property> <property></property> <property></property> </bean> </beans>
mvc:annotation-driven/> 开启注解映射支持,它是为了简化配置的缩写形式,它相当于以下SpringMVC學習系列(2) 之 經典的HelloWorld實現个配置:
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/> <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>
由于我们在web.xml文件里面配置的是拦截所有的请求到该servlet,所以我们在这里要对静态资源文件映射作一下配置,否则请求这些资源文件会返回404:
<!-- 静态资源映射 --><resources></resources><resources></resources><resources></resources><resources></resources><resources></resources><!-- 当上面要访问的静态资源不包括在上面的配置中时,则根据此配置来访问 --><default-servlet-handler></default-servlet-handler>
开启Controller注解支持,并配置只扫描指定包下面的Controller:
<component-scan> <include-filter></include-filter> </component-scan>
配置视图解析器,并指定视图所在的文件夹:
<bean> <property></property> <property></property> <property></property> <property></property></bean>
添加HelloWorldController,在项目中新建一个web的Source Folder文件夹,并在文件夹下面添加com.demo.web.controllers包,在包中添加一个HelloWorldController类,类中内容如下:
package com.demo.web.controllers;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.servlet.ModelAndView; @Controller @RequestMapping(value = "/helloworld")public class HelloWorldController { @RequestMapping(value="/index", method = {RequestMethod.GET}) public ModelAndView index(){ ModelAndView modelAndView = new ModelAndView(); modelAndView.addObject("message", "Hello World!"); modelAndView.setViewName("index"); return modelAndView; } }
其中@Controller 注解把该class指定为controller,controller 上的@RequestMapping 注解的 value值指定该controller所映射的请求。
方法上的@RequestMapping 注解指定该方法为一个action,value 值指定该action所映射的请求,method 中的RequestMethod.GET指定该action只接受get请求。
ModelAndView 中的setViewName指定了该action所对应的视图名称,解析视图时会在springservlet-config.xml文件指定的视图文件夹中寻找对应的视图。
添加视图,在项目/WEB-INF文件夹下新建一个views文件夹,并在views中添加index.jsp视图,视图内容如下:
nbsp;html PUBLIC "-//W3C//DTD HTML 4.0SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><meta><title>Insert title here</title> ${message}
运行项目,由于我们之前配置了:mvc:view-controller path="/" view-name="forward:/helloworld/index"/> 所以直接可以看到结果:
把请求的URL地址改为配置的地址:http://localhost:8080/SpringMVCLesson/helloworld/index,可以看到结果相同:
代码下载:http://pan.baidu.com/s/SpringMVC學習系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 經典的HelloWorld實現o6LRw7o
以上就是SpringMVC学习系列(SpringMVC學習系列(2) 之 經典的HelloWorld實現) 之 经典的HelloWorld实现的内容,更多相关内容请关注PHP中文网(www.php.cn)!