我们的 webapp 使用 Spring 3.1。
我们目前将静态资源映射为
<mvc:resources mapping="/static/**" location="/static/" />
在我们的骨架模板中,我们引用这样的样式表:
<link rel="stylesheet" href="static/css/main.css">
现在发生的事情是我在 webapp 的主页中加载 css 和图像没有问题(比如http://www.mysite.com),但是我在内页中得到 404(比如http://www. mysite.com/section1/chapter1)
我该如何解决这个问题?
编辑:
我们没有使用 JSP/JSTL。我们正在使用Thymeleaf。