JSP Unterminated lt;s:agt; Tag With Nested OGNL(JSP 未终止 lt;s:agt;使用嵌套 OGNL 标记)
问题描述
我有一些 OGNL 用于将 <s:a>
的 href 元素填充到由 Google UserService 处理的动态生成的 URL.
I have some OGNL I am using to populate the href element of an <s:a>
to a dynamically produced URL, handled by the Google UserService.
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="requestUri" value="%{#context['com.opensymphony.xwork2.dispatcher.HttpServletRequest'].requestURI}" />
<s:a href="%{#action.userService.createLoginURL("<c:out value="${requestUri}"/>");}">Sign in</s:a>
但是,我收到一条错误消息,提示 <s:a>
标记未终止.我尝试转义内部语音标记,并使用单引号,但到目前为止,我总是收到相同的错误消息.
However, I am getting an error saying the <s:a>
tag is unterminated. I have tried escaping inner speechmarks, and using single quotes but so far I have always been greeted with the same error message.
(11,71) Unterminated <s:a tag
我一辈子都看不出哪里出了问题.也许对这种语言有更好洞察力的人会看到我看不到的东西.
I can't for the life of me see what is wrong. Maybe someone with better eyes for the language will see something I cannot.
推荐答案
你不能在Struts标签的属性中使用JSP标签,但是你可以在那里使用OGNL.
You cannot use JSP tags in Struts tag's attributes, but you can use OGNL there.
另外请注意,您可以在 Struts 标签的属性中使用 OGNL only.在大多数情况下,OGNL 在服务器上执行一次,你不应该使用嵌套的 OGNL 或任何你称之为的东西.可能是这个问题会告诉你如何使用你称为nested OGNL.
Also note, that you can use OGNL only in Struts tag's attributes. And in most cases OGNL is executed once on the server, you shouldn't use nested OGNL or whatever you call it. May be this question will show you how to use you called nested OGNL.
<s:set var="requestUri" value="%{#context['com.opensymphony.xwork2.dispatcher.HttpServletRequest'].requestURI}" />
<s:a href="%{#action.userService.createLoginURL(#requestUri)}">Sign in</s:a>
这篇关于JSP 未终止 <s:a>使用嵌套 OGNL 标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JSP 未终止 <s:a>使用嵌套 OGNL 标记
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01