ServletRequest.setAttribute 是否允许带句点的键名?

发布于 2024-10-20 11:35:43 字数 459 浏览 1 评论 0原文

我有一个带有 Struts 1 操作的 java web 应用程序,具有以下代码:

request.setAttribute("cat.sound", "meow");

在我的 jsp 页面上,我有以下标记:

<c:out value="${cat.sound}" />

但是,JSP 页面上永远不会打印“meow”。如果我有一个“cat”类型的对象来做类似的事情,这可能会起作用:

request.setAttribute("cat", cat);

不幸的是,这个 web 应用程序没有为猫定义任何对象,并且 jsp 页面被冻结(不允许更改)。

那么是否可以将 request.setAttribute 与包含句点/点的键名一起使用? JSP页面需要如何引用设置的参数?

I have a java webapp with a Struts 1 action that has the following code:

request.setAttribute("cat.sound", "meow");

On my jsp page, I have the following tag:

<c:out value="${cat.sound}" />

However, "meow" is never printed on the JSP page. This might work if I had an object of type "cat" to do something like:

request.setAttribute("cat", cat);

Unfortunately, this webapp does not have any object defined for the cats and the jsp pages are frozen (no changes allowed).

So is it possible to use request.setAttribute with a key name containing periods/dots? How would the JSP page need to reference the set parameter?

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

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

发布评论

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

评论(1

怀里藏娇 2024-10-27 11:35:43

如果您将 cat 设置为带有字符串键 "sound" 的地图,则可以避免创建 Cat 类:

request.setAttribute("cat", Collections.singletonMap("sound", "meow"));

Collections#singletonMap() 为您提供了一种漂亮、简洁的方式来创建带有一个条目的地图。

You can avoid having to create a Cat class if you set cat to a map with a String key "sound":

request.setAttribute("cat", Collections.singletonMap("sound", "meow"));

Collections#singletonMap() gives you a nice, succinct way to create a map with one entry.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文