将上下文路径设置为 url 时出现错误

发布于 2024-12-12 16:55:38 字数 267 浏览 0 评论 0原文

我正在 jsp 页面中设置上下文路径,但运行 jsp 页面时显示错误。

如下图所示。

<c:set var="path" value="${pageContext.request.contextPath}"/>

<% urlName='<c:out value="${path}"/>/tran/handleTransactionResults.do'; %>

${path} 未显示上下文路径。

I am setting the context path in jsp page but it is showing error while running the jsp page.

as shown below.

<c:set var="path" value="${pageContext.request.contextPath}"/>

<% urlName='<c:out value="${path}"/>/tran/handleTransactionResults.do'; %>

${path} is not showing the context path.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难如初 2024-12-19 16:55:43

您不能在 scriptlet 中使用 JSP 标记。这样做:

<c:set var="path" value="${pageContext.request.contextPath}"/>
<% urlName= request.getAttribute("path") + "/tran/handleTransactionResults.do"; %>

或者更简单:

<% urlName= request.getContextPath() + "/tran/handleTransactionResults.do"; %>

如果你只是想输出你的路径,你可以使用 <%= %> 快捷方式:

<%= request.getContextPath() + "/tran/handleTransactionResults.do"; %>

You cannot use JSP tags within a scriptlet. Do it like this:

<c:set var="path" value="${pageContext.request.contextPath}"/>
<% urlName= request.getAttribute("path") + "/tran/handleTransactionResults.do"; %>

Or even easier:

<% urlName= request.getContextPath() + "/tran/handleTransactionResults.do"; %>

If you simply want to output your path, you can use the <%= %> shortcut:

<%= request.getContextPath() + "/tran/handleTransactionResults.do"; %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文