首页 > 代码库 > SpringMVC -01

SpringMVC -01

springMVC 是表现层技术,可以用来代替 struts2,

技术分享

 

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_2_5.xsd" id="WebApp_ID" version="2.5">  <display-name>springmvc-01</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>default.html</welcome-file>    <welcome-file>default.htm</welcome-file>    <welcome-file>default.jsp</welcome-file>  </welcome-file-list>      <!-- 前端控制器 -->  <servlet>      <servlet-name>springmvc</servlet-name>      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>      <!--如果不配置init-param,就 默认找 /WEB-INF/[servlet的名称]-servlet.xml ,这里就是找/WEB_INF/springnvc-servlet.xml-->      <init-param>          <param-name>contextConfigLocation</param-name>          <param-value>classpath:springmvc.xml</param-value>      </init-param>  </servlet>    <servlet-mapping>      <servlet-name>springmvc</servlet-name>      <!--                      拦截的规则:          1. /*  拦截所有   jsp  js png .css 资源全拦截   (建议不使用)          2. *.action *.do 拦截以do action 结尾的请求     能使用 (  用在ERP类型的项目  )          3. /  拦截所有 (不包括jsp) (包含.js .png.css)  强烈建议使用     面向消费者的项目会使用,比如淘宝,京东       -->      <url-pattern>*.action</url-pattern>  </servlet-mapping></web-app>

 

springmvc.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:mvc="http://www.springframework.org/schema/mvc"    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">        <!-- 扫描基本包,扫描其中的@Controler  @Service 等注解  -->        <context:component-scan base-package="com.msym"/>                <!-- 处理器映射器 --><!--         <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/> -->        <!-- 处理器适配器 --><!--         <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/> -->        <!-- 注解驱动 -->        <mvc:annotation-driven/>                <!-- 视图解释器 -->        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">            <property name="prefix" value="/WEB-INF/jsp/"/>            <property name="suffix" value=".jsp"/>        </bean>           </beans>

技术分享

第 3 步返回的 Handler 中包含了处理请求的逻辑方法,其形式是 包名+类名+方法签名

其中的第 7 步返回的 ModelAndView 中包含的 View 只是包含了一个视图的路径,不是真正的页面,真正的页面包含在第 9 步的 View 中。

处理器(Handler)就是需要编写的请求处理逻辑,就是一个方法。

SpringMVC -01