SpringMVC配置讲解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMVC配置讲解相关的知识,希望对你有一定的参考价值。

参考技术A 转发: SpringMVC默认就是以转发的形式响应JSP,也就是说直接返回视图名称的方式就是转发
重定向:需要使用 redirect: + 视图路径,当然也可以重定向到指定url再次进行处理,比如:redirect:/user/list
需要注意的是业务方法中,设置重定向不能像转发一样写逻辑视图,必须写明目标资源的物理路径,如"redirect:/index.jsp"

所以在springmvc配置文件中统一修改

真正的应用肯定少不了Spring,所以这里将spring配置加上

springmvc的上下文层级,理解层次化的 ApplicationContext

带小s的 loaderlistener 所加载形成的上下文,可以有多个,为我们提供了所有应用公共所使用的组件和服务,如sevice、dao,这些服务应该被整个应用所共享,而不应该被局限在某个 dispatcherServlet 上下文之中

不带小s的,就是与我们的 dispatcherServlet 相关的上下文。 dispatcherservlet 可以有多个,因为在现在的互联网中,一个应用可能需要提供多种服务,而让 dispatcherservlet 针对不同的服务请求去分发。因为有些服务是完全不同于其他服务的,所以需要作区分,根据配置的 url-pattern 进行拦截。

spring配置文件

该配置作用是注册 RequestMappingHandlerMapping 与 RequestMappingHandlerAdapter 两个Bean,这是Spring MVC为 @Controller 分发请求所必需的,并且提供了数据绑定支持, @NumberFormatannotation 支持, @DateTimeFormat 支持, @Valid 支持读写XML的支持(JAXB)和读写JSON的支持(默认Jackson)等功能

location:指location指定的目录不要拦截,直接请求
mapping:指在static目录下的所有文件(**代表所有文件)
cache-period:设置静态资源在客户端浏览器中的缓存有效时间
该配置意思就是在根目录下static的所有文件不会被 DispatcherServlet 拦截,直接访问,当做静态资源交给Servlet处理

可以配置多个ViewResolver。 使用order属性排序。 InternalResourceViewResolver 需要放在最后。

如果想在方法中直接使用 HttpServletRequest 、 HttpServletResponse 、 HttpSession 等对象,需要引入servlet的依赖包

springMvc的Hello world(xml配置)

本章主要介绍与Struts2类似的mvc框架SpringMvc,讲解怎么建立第一个helloworld程序的建立

讲解不到位的地方欢迎大家指正:联系方式rlovep.com

详细请看源代码注释:

写文章不易,欢迎大家采我的文章,以及给出有用的评论,当然大家也可以关注一下我的github;多谢;

1.下载spring的release包

地址:http://repo.springsource.org/libs-release-local/org/springframework/spring/

2.建立一个动态web应用

  1. 建立名为springmvc的web应用
  2. 导入必须要的包:我使用的是spring4.2,需要导入如下包:
    org.springframework.beans-4.2.3.RELEASE.jar
    org.springframework.context-4.2.3.RELEASE.jar
    org.springframework.core-4.2.3.RELEASE.jar
    org.springframework.expression-4.2.3.RELEASE.jar

3.在/WEB-INF/下修改或创建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" id="WebApp_ID" version="3.0">
  <display-name>SpringMvc</display-name>
     <!-- 注册springMvc核心控制器 -->
     <servlet>
        <servlet-name>DispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
     </servlet>
     <!-- 配置映射 -->
     <servlet-mapping>
        <servlet-name>DispatcherServlet</servlet-name>
        <url-pattern>*.action</url-pattern>
     </servlet-mapping>
         <!-- 首页配置 -->
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

4.建立HelloControl.java类并实现Controller接口

package com.rlovep.hello;

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 HelloControl implements Controller{

    public HelloControl() {
        System.out.println("创建helloControl");
    }
    @Override
    public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
        System.out.println("进入处理方法");
        /**
         * ModelAndView表示向视图封装的数据和真实路径
         */
        ModelAndView modelAndView=new ModelAndView();
        //写入一个域对象
        modelAndView.addObject("message","HelloWorld");
        //真实路径
        modelAndView.setViewName("/jsp/hello.jsp");
        return modelAndView;
    }

}

5.在/webRoot/或者/webContent/下建立jsp/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>第一个springMvc程序</title>
</head>
<body>
${message }
</body>
</html>

6.在/WEB-INF/创建DispatcherServlet-servlet.xml配置文件

  1. xml头部信息与spring.xml相同
  2. 命名规则:web.xml文件中配置的的值-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:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    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.xsd
         http://www.springframework.org/schema/aop
         http://www.springframework.org/schema/aop/spring-aop.xsd
         http://www.springframework.org/schema/tx
         http://www.springframework.org/schema/tx/spring-tx.xsd
         http://www.springframework.org/schema/mvc
         http://www.springframework.org/schema/mvc/spring-mvc.xsd
         ">
         <bean name="/hello.action" class="com.rlovep.hello.HelloControl"></bean>
</beans>   

7.部署web应用到tomcat中,通过浏览器访问如下URL:http://localhost:8080/springmvc/hello.action

显示如下:
技术分享

8.注意spring的控制器类是单例的

只会构造一次,但是会重复执行方法,注意与Struts2的区别;
技术分享
上图的测试可以说明控制器是单例的。
springmvc与struts2主要区别:

1)springmvc的入口是一个servlet,即前端控制器,例如:*.action
   struts2入口是一个filter过虑器,即前端过滤器,例如:/*
2)springmvc是基于方法开发,传递参数是通过方法形参,可以设计为单例
   struts2是基于类开发,传递参数是通过类的属性,只能设计为多例
3)springmvc通过参数解析器是将request对象内容进行解析成方法形参,将响应数据和页面封装成
   ModelAndView对象,最后又将模型数据通过request对象传输到页面
struts采用值栈存储请求和响应的数据,通过OGNL存取数据

好的本章介绍到这里
来自伊豚wpeace(rlovep.com)










以上是关于SpringMVC配置讲解的主要内容,如果未能解决你的问题,请参考以下文章

SpringMVC详解------基于注解的入门实例

Maven快速创建SpringMVC web工程详解

SpringMVC:SpringMVC上传实例讲解

SpringMVC:SpringMVC上传实例讲解

浅谈SpringMVC源码之SpringServletContainerInitializer的完整加载流程

SpringMVC+Shiro整合配置文件详解