我的根URL在Spring MVC应用程序中不断混乱。我在servlet-context.xml
<!-- Resource Mapping -->
<resources mapping="/theme1/**" location="/resources/theme1/" cache-period="31556926"/>
在localhost:8080/me/login.jsp
的标头上,我有以下CSS文件
<link rel="stylesheet" href="theme1/css/main.css" type="text/css"></link>
现在在同一JSP上,我有一个锚文本register
,它映射到/useraccount/register
。T
控制器中的方法返回相同的视图login.jsp
。因此,刷新页面后,域将更改为localhost:3000/me/useraccount/register
所以问题在于样式表URL无效-返回404。它现在指向
localhost:8080/me/useraccount/theme1/css/main.css
如何解决此问题,使其指向-从某种意义上讲是静态的-
localhost:8080/me/theme1/css/main.css