我有这个结构:
WebContent
resources
components
top.xhtml
company
about_us.xhtml
index.xhtml
top.xhtml
是一个组件,它也被index.xthml
使用about_us.xhtml
。
top.xhtml
<ul>
<li><a href="index.xhtml">Home</a></li>
<li><a href="company/about_us.xhtml">About us</a></li>
...
</ul>
所以我的问题是,当当前页面是index.xhtml
组件时,组件会正确生成 URL,但是当当前页面是时about_us.xhtml
,它会生成错误的 URL。我不能使用相对路径,因为它也会生成错误的 URL。我认为是因为该组件是基于*.xhtml
页面的当前路径。
我能找到的唯一解决方案是:
<ul>
<li><a href="${pageContext.request.contextPath}/webname/index.xhtml">Home</a></li>
<li><a href="${pageContext.request.contextPath}/webname/about_us.xhtml">About us</a></li>
...
</ul>
但我认为一点也不“优雅”。有任何想法吗?