最近需要用到
spring mvc
这个
web
框架,学习了相关的资料,也查看了好些帖子,都介绍的比较详细,但没有适合自己的模板,在看《
s
pring in action
》的时候,(PS
:蛮好的
spring
书籍),结合了里面对各种控制器和视图解析器的介绍,个人决定采用
SimpleUrlHandlerMapping
控制器+
PropertiesMethodNameResolver
的视图解析的方式。
下面介绍一下自己 总结的mvc
处理流程:
1.
首先浏览器发送一个
url请求,比如
http://www.xxx.com/hello.html
2.
然后被
org.springframework.web.servlet.DispatcherServlet
拦截,
DipatcherServlet
根据配置里的xml
文件路径找到相应的配置文件,比如
dispatcher-servlet.xml
文件。
DipatcherServlet
在web.xml
中配置。如果使用的控制器映射方式是
SimpleUrlHandlerMapping
(推荐使用这种,映 射方式有
3
种:
BeanNameUrlHandlerMapping
,
SimpleUrlHandlerMappin
,
CommonsPathMapHandlerMapping
),默认的控制器映射方式是
BeanNameUrlHandlerMapping
。在
SimpleUrlHandlerMapping
中的
mappings
中查找“
/hello*.html
”的
key
值,然后找相应的
value
,即对应
bean
的
id
名字,比如
helloController
。然后在配置文件中查找相应
bean
的
id
为“
helloController
”的
bean
配置,查找其对应的处理类,比如“
com.ctq.action.HelloController
”。
<bean id="simpleUrlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/hello*.html">helloController</prop>
</props>
</property>
</bean>
比如
<bean id="helloController" class="com.ctq.action.HelloController">
现在由
HelloController
类来进行相应的处理操作(推荐
HelloController
继承
MultiActionController
),
3.
然后
D
ipatcherServlet询问配置文件中的视图解析器
PropertiesMethodNameResolver
(个人推荐用这种,共有
3
种:
InternalResourceViewResolver
,
ParameterMethodNameResolver
,
PropertiesMethodNameResolver
。我觉得后两种都还可以,第一种虽然为默认情况,但适合小型简单的应用)。若采用这种视图解析器,需要在第
3
步中的
bean
配置中加入
methodNameResolver
属性,以代替默认的
InternalResourceViewResolver
配置。比如:
<bean id="helloController" class="com.ctq.action.HelloController">
<property name="methodNameResolver">
<ref bean="methodNameResolver"/>
</property>
</bean>
<bean id="methodNameResolver" class="org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver">
<property name="mappings">
<props>
<prop key="/hello.html">hello</prop>
<prop key="/helloworld.html">helloWorld</prop>
<!-- 可以有多个 -->
</props>
</property>
</bean>
这样就会找到相应的hello.jsp
页面了,将页面由服务器解析给浏览器用户。如果用户输入的
url
地址为:
http://www.xxx.com/helloworld.html
,则会被
HelloController
的
helloWorld()
方法执行。
要点:这里要注意的是,web.xml
中的过滤路径不能为“
/*
”,应当改为
*.html
或者其他的形式,在
SimpleUrlHandlerMapping
的配置中,设置为“
/hello*.html
”这里表示只要以
hello
开头,以“
.html
”结尾的
url
地址形式都由相对应的
helloController
来处理,然后转向
PropertiesMethodNameResolver
中,对于具体的“
/hello.html
”形式的
url
由控制器中的
hello
方法来执行,对于形式为“
/helloworld.html
”形式的
url
地址由其中的
helloWorld
方法来执行。然后根据方法中定义的视图转向对应的处理页面。
下面附上我的例子代码:
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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>spring-mvc</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-list>
<filter>
<filter-name>CharacterEncodingFilter</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>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>
这里的contextConfigLocation可以指定相应路径下的配置文件,多个文件可以之间用逗号隔开。
dispatcher-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:aop="http://www.springframework.org/schema/aop" xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/jdbc
http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd">
<bean id="simpleUrlMapping"
class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/hello*.html">helloController</prop>
</props>
</property>
</bean>
<bean id="helloController" class="com.ctq.action.HelloController">
<property name="message">
<value>Hello Relic~~~~!!</value>
</property>
<property name="methodNameResolver">
<ref bean="methodNameResolver" />
</property>
</bean>
<bean id="methodNameResolver"
class="org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver">
<property name="mappings">
<props>
<prop key="/hello.html">hello</prop>
<prop key="/helloworld.html">helloWorld</prop>
<!-- 可以有多个 -->
</props>
</property>
</bean>
</beans>
HelloController.java
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.multiaction.MultiActionController;
public class HelloController extends MultiActionController {
private String message;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public ModelAndView hello(HttpServletRequest req, HttpServletResponse res)
throws Exception {
System.out.println("http://www.xxx.com/hello.html调用的是hello方法");
return new ModelAndView("/jsp/hello.jsp", "message", message); //返回jsp文件夹中的hello.jsp
}
public ModelAndView helloWorld(HttpServletRequest req,
HttpServletResponse res) {
System.out.println("http://www.xxx.com/helloworld.html调用的是helloWorld方法");
return new ModelAndView("/jsp/hello.jsp", "message", message);
}
}
hello.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>hello</title>
</head>
<body>
<h1>WELCOME Index</h1>
<h2>Hello</h2>
<h2>${message}</h2>
</body>
</html>
我总结的方式是SimpleUrlHandlerMapping+
PropertiesMethodNameResolver的方式,至于这种方式的优缺点,相关的介绍有很多,也可以找相关的书籍(我是在spring in action中了解的)。
分享到:
相关推荐
这个"最全最经典spring-mvc教程"应该会详细讲解上述所有概念,并可能通过实例演示如何配置、创建和调试Spring MVC项目。对于想要深入理解和使用Spring MVC的开发者来说,这是一份非常宝贵的资源。通过学习这个教程,...
三、Spring MVC核心流程图:描述了Spring MVC处理请求的流程,包括前端控制器接收请求,经过分发器分发给具体的控制器,然后由控制器处理业务逻辑,最后将结果返回给用户。 四、Spring MVC DispatcherServlet说明:...
#### 三、Spring MVC 工作流程 1. **请求接收**:HTTP 请求首先被 DispatcherServlet 接收。 2. **请求映射**:DispatcherServlet 使用 HandlerMapping 找到相应的控制器。 3. **处理请求**:控制器处理请求,并...
这是一个基于Spring MVC、Mybatis和Spring框架实现的个人博客系统,涵盖了Web开发中的后端架构设计、数据库管理和前端展示等多个方面。以下将详细介绍这个系统的关键知识点: **1. Spring MVC** Spring MVC是Spring...
Spring MVC 和 MyBatis 是两个在Java Web 开发中广泛使用的框架。Spring MVC 作为Spring...通过研究源码,你可以掌握Web应用的开发流程,理解Spring MVC和MyBatis的协同工作方式,以及如何在实际项目中有效利用它们。
### Spring MVC 执行流程详解 #### 一、概述 Spring MVC 是 Spring 框架中的一个重要组成部分,主要用于构建基于 Web 的应用程序。它提供了一个清晰的架构来管理 Web 层的业务逻辑,使得开发者能够轻松地处理 ...
### Spring MVC 教程知识点详解 #### Spring Web MVC 框架简介 Spring Web MVC 是 Spring Framework 的一个重要组成部分,主要用于构建基于 Java 的 Web 应用程序。它提供了一个灵活且强大的 MVC 实现,使得开发者...
下面我们将详细探讨Spring MVC的一些关键知识点。 1. **MVC模式**:MVC(Model-View-Controller)是一种设计模式,将业务逻辑、数据和用户界面分离。在Spring MVC中,Model代表业务对象,View负责展示,Controller...
本文将详细介绍 Spring MVC 的核心流程及其在一个典型登录示例中的应用。 #### 二、MVC 设计模式的关键流程 在深入探讨 Spring MVC 之前,我们先简要回顾一下 MVC 设计模式的关键流程: 1. **收集页面输入参数**...
标题中的"开发Spring MVC应用程序补充—程序源码下载.rar_spring_spring mvc_spring mvc 源码_sp"表明这是一个关于Spring MVC框架的开发教程,其中包含了源代码供学习者参考。Spring MVC是Spring框架的一个核心组件...
### Spring MVC 工作流程详解 #### 一、Spring MVC 概述 Spring MVC 是 Spring 框架的一部分,主要用于构建基于 Java 的 Web 应用程序。它是一种模型-视图-控制器(Model-View-Controller,MVC)设计模式的具体实现...
**Spring MVC IDEA版本DEMO详解** 在现代Java Web开发中,Spring MVC框架是不可或缺的一部分,它为构建可扩展、模块化的Web应用程序提供了强大的支持。IntelliJ IDEA作为一款高效的Java集成开发环境,使得开发...
Spring MVC、Spring和Mybatis是Java开发中非常流行的三大开源框架,它们的组合,通常被称为“SSM”框架。SSM框架的使用可以极大地提高Web应用的开发效率,通过合理的解耦,使得各组件能够更好地协同工作。接下来,...
**Spring MVC 框架详解** Spring MVC 是 Spring 框架的一个重要模块,它为构建基于Java的Web应用程序提供了一个强大的模型-视图-控制器(MVC)架构。Spring MVC 的设计允许开发者将业务逻辑、数据处理和用户界面...
Spring MVC 框架详解: Spring MVC 提供了一个模型-视图-控制器(MVC)架构,使得开发者可以清晰地将业务逻辑、数据处理和用户界面进行解耦。它通过DispatcherServlet作为前端控制器,负责接收请求并分发到相应的...
Spring MVC和iBatis是Java开发中常用的两个框架,它们在构建Web应用程序中扮演着重要角色。本实例结合了这两个框架,提供了详细的配置和实践指南,适合初学者和有一定经验的开发者参考。以下是对这两个技术及其整合...