Spring MVC访问不适用于一级层次结构的静态资源

时间:2013-04-26 07:12:08

标签: java java-ee spring-mvc

我在spring-servlet.xml中使用以下代码行来访问spring mvc项目中的静态内容:

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

directory structure

对于一个级别的层次结构级别,它可以正常工作,标记为黄色并抛出404错误:

有效的链接:
http://{host:port}/res/jquery.1.8.js
http://{host:port}/res/css/test/test.css
http://{host:port}/res/css/test/test1/test1.css
http://{host:port}/res/img/test/test.png

显示404错误的链接:
http://{host:port}/res/css/main.css
http://{host:port}/res/img/icon.png

问题:
http://{host:port}/res/{folder}/{file}.extension
所以。关于层次结构类型存在一些问题。

非常感谢提前:))

1 个答案:

答案 0 :(得分:0)

我根本没有遇到这个问题,但你的main.css在测试中没有css,但我找不到png文件的原因,请再次检查文件和文件夹名称和hiraricy。