spring 3.0 mvc 笔记1

spring框架是当前java世界中最优秀的框架之一。
1.首先需要收集spring3 mvc所使用的jar包。
org.springframework.core-3.0.5.RELEASE.jar
org.springframework.beans-3.0.5.RELEASE.jar
org.springframework.context-3.0.5.RELEASE.jar
org.springframework.context.support-3.0.5.RELEASE.jar
org.springframework.web.servlet-3.0.5.RELEASE.jar
org.springframework.web-3.0.5.RELEASE.jar
org.springframework.asm-3.0.5.RELEASE.jar
org.springframework.expression-3.0.5.RELEASE.jar
com.springsource.org.apache.commons.logging-1.1.1.jar
这里使用的版本是3.05 目前spring的最高版本。
2.创建web工程,配置web.xml好让spring框架可以顺利加载。


xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

dispatcherServlet
org.springframework.web.servlet.DispatcherServlet
1


dispatcherServlet
*.action



index.jsp



创建一个servlet,目的是将所有的*.action请求交由spring来处理.
3.配置一个请求映射文件,spring默认的映射文件名称应该是[servletName]-servlet.xml,所以这里的映射文件为dispatcherServlet-servlet.xml
4.我们需要创建一个请求处理类,test.FirstAction,该类实现一个Controller接口

package test;

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

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;

public class FirstAction implements Controller {

public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
System.out.println("first controller is working!");

return new ModelAndView("first");
}

}

这里基本上和普通的servlet类似,有request response。
5.接下来我们配置一个用于显示的页面,这里我们只是创建一个jsp,/WEB-INF/jsp/first.jsp
6.配置一下请求转发规则,配置dispatcherServlet-servlet.xml,我们将第一个映射请求为first.action.


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">



firstAction












这里SimpleUrlHandlerMapping用于将请求映射到action中。
UrlBaseViewResolver用于映射view的处理,其属性viewClass表示处理方式可以是pdf,xls,jsp。。。这里我们直接解析jsp
prefix、suffixb分别表示视图前缀和后缀

当访问 first.action的时候将转到FirstAction处理并交由/WEB-INF/jsp/first.jsp进行显示。

你可能感兴趣的:(Spring,MVC,Spring,Servlet,JSP,Web)