如何发布 JSTL 导入标记 () 的参数?
我目前正在 JSP 页面中使用 JSTL 标记来导入外部页面的内容:
<c:import url="http://some.url.com/">
<c:param name="Param1" value="<%= param1 %>" />
...
<c:param name="LongParam1" value="<%= longParam1 %>" />
</c:import>
不幸的是,参数现在变得越来越长。 由于它们在 URL 中被编码为 GET 参数,因此我现在收到“414:请求 URL 太大”错误。 有没有办法将参数POST到外部URL? 也许使用不同的标签/标签库?
I'm currently using JSTL tag in a JSP page to import the content of an external page:
<c:import url="http://some.url.com/">
<c:param name="Param1" value="<%= param1 %>" />
...
<c:param name="LongParam1" value="<%= longParam1 %>" />
</c:import>
Unfortunately the parameters are now getting longer. Since they are encoded as GET parameters in the URL, I am now getting "414: Request-URL too Large" error. Is there a way to POST the parameters to the external URL? Maybe using a different tag / tag library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 http 后://www.docjar.com/html/api/org/apache/taglibs/standard/tag/common/core/ImportSupport.java.html 和 http://www.docjar.com/html/api/org/apache /taglibs/standard/tag/el/core/ImportTag.java.html ,我得出的结论是,您无法使用
import
标记执行 POST 请求。我想你唯一的选择就是使用自定义标签 - 编写一个 apache httpclient 标签应该很容易,它接受一些 POST 参数并输出响应文本。
After looking thru http://www.docjar.com/html/api/org/apache/taglibs/standard/tag/common/core/ImportSupport.java.html and http://www.docjar.com/html/api/org/apache/taglibs/standard/tag/el/core/ImportTag.java.html , i ve come to the conclusion that you cannot do a POST request using the
import
tag.I guess the only choice you have is to use a custom tag - it should be pretty easy to write an apache httpclient tag that takes some POST param and output the response text.
您需要一个 Servlet 以及
java.net.URLConnection
为此。基本示例:
You'll need a Servlet with
java.net.URLConnection
for this.Basic example: