zoukankan      html  css  js  c++  java
  • SpringMVC拦截静态资源的问题

    web.xml的配置

    "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"

    "http://java.sun.com/dtd/web-app_2_3.dtd" >

    Archetype Created Web Application

    contextConfigLocation

    classpath:applicationContext.xml

    org.springframework.web.context.ContextLoaderListener

    springDispatcherServlet

    org.springframework.web.servlet.DispatcherServlet

    contextConfigLocation

    /WEB-INF/dispatcher-servlet.xml/

    1

    springDispatcherServlet

    *.do

    /index.jsp

    SpringMVC配置

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"

    xmlns:mvc="http://www.springframework.org/schema/mvc"

    xmlns:p="http://www.springframework.org/schema/p"

    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

    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-4.0.xsd">

    class="org.springframework.web.servlet.view.InternalResourceViewResolver">

    class="org.springframework.web.multipart.commons.CommonsMultipartResolver"

    p:defaultEncoding="utf-8">

    在jsp页面无法插入图片


     
  • 相关阅读:
    关于String重写的hashcode的代码分析
    自定义HashSet判重标准
    idea-Java文件结构
    java 带静态域的导出类创建时都发生了什么?
    seo初学
    关于事件冒泡和事件委托
    关于本地$.get(url,function(data)),异步获取数据
    FileReader上传图片
    关于随机生成颜色
    C语言贪吃蛇
  • 原文地址:https://www.cnblogs.com/xsns/p/6721933.html
Copyright © 2011-2022 走看看