Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在开发一个由 JSP 组成的大型 Web 应用程序。我也使用 WebWork 框架。
到目前为止,我的应用程序的上下文根是“/”。现在我想将其更改为“nstat”。
我应该如何处理来自我的 JSP 的相对和绝对调用?
对于 jsps,您可以使用<c:url/>标签来构建正确的相对 url。Webwork 有一个类似的自定义标签,名为<ww:url/>.
<c:url/>
<ww:url/>
<c:url val="somepath/some.jsp"/>
将被翻译成“/nstat/somepath/some.jsp”。如果您设置了 var 属性,您可以稍后在您的 jsp 中使用该${}符号使用该 url。
${}