本文主要是介绍SpringMVC之静态资源无法访问,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
对于添加了springMVC拦截器后无法访问静态文件的情况,有三种解决办法,可参考:http://www.cnblogs.com/banning/p/6195072.html
我项目中用的第一种方案,且静态文件全在/WEB-INF/public/,故配置如下:
springmvc-config.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.3.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd http://www.springframework.org/schema/context http://www.springframe
这篇关于SpringMVC之静态资源无法访问的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!