zoukankan      html  css  js  c++  java
  • 关于springMVC的一些xml配置

    ①springMVC必备jar包:

    commons-logging-1.1.3.jar 
    spring-aop-4.0.0.RELEASE.jar 
    spring-beans-4.0.0.RELEASE.jar 
    spring-context-4.0.0.RELEASE.jar 
    spring-core-4.0.0.RELEASE.jar 
    spring-expression-4.0.0.RELEASE.jar 
    spring-web-4.0.0.RELEASE.jar 
    spring-webmvc-4.0.0.RELEASE.jar 

    ②web.xml的注解:可以按 alt+/ 提示出来

    <!-- The front controller of this Spring Web application, responsible for handling all application requests -->
    <servlet>
    <servlet-name>springDispatcherServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>location</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>

    <!-- Map all requests to the DispatcherServlet for handling -->
    <servlet-mapping>
    <servlet-name>springDispatcherServlet</servlet-name>
    <url-pattern>url</url-pattern>
    </servlet-mapping>

    1.location:填写spring-mvc.xml文件的路径

    2.url:填写指定过滤处理的请求地址,其中“/”为restFul风格请求方式

    ③spring-mvc.xml文件一些配置:

    <!-- 使用注解的包,包括子集 -->   会自动扫描controller层
    <context:component-scan base-package="controller" />

    <!-- 视图解析器 -->
    <bean id="viewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/" />
    <property name="suffix" value=".jsp"></property>
    </bean>

    1.value="/":指定页面的地址

    2.value=".jsp":指定页面的后缀名

    ⑤springMVC处理静态资源,在页面写/resources,会自动映射为/images

    <mvc:resources mapping="/resources/**" location="/images/"/>

  • 相关阅读:
    历史上的今天:3月1日
    用Windows Live Writer远程更新wordpress博客
    二月只有28天
    办公也可云概念
    FLASH做的画图板
    FLASH鼠标跟随特效
    silverlight应该以什么面孔见人?
    飞信Fetion 开发资料及下载
    收藏一个数学的C++算法的好博客
    下载网站资源共享
  • 原文地址:https://www.cnblogs.com/dmchzp/p/5195630.html
Copyright © 2011-2022 走看看