struts2:在jsp中访问action类的getter而不创建对象

发布于 2024-07-20 04:31:40 字数 190 浏览 6 评论 0原文

我正在研究struts2。 在我的动作类中,我编写了一些访问器(setter-getter)。 现在,假设这个操作类返回 SUCCESS,并且在 struts.xml 中我针对结果“SUCCESS”打开一个 jsp 页面(例如 abc.jsp)。 我需要在操作类中编写的所有 getter 方法的值,而不在我的 jsp(即 abc.jsp)中创建操作类的对象。

I am working on struts2. In my action class I have written some accessors (setter-getter). Now, suppose this action class is returning SUCCESS and in struts.xml I am open a jsp page (say abc.jsp) against the result "SUCCESS". I need the values of all getter methods written in action class without creating object of action class in my jsp (i.e abc.jsp).

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

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

发布评论

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

评论(1

尘世孤行 2024-07-27 04:31:40

如果您的控制器具有 getPostalCode 属性,您可以执行以下操作:

<s:textfield name="postalCode"/>

这会将值绑定到控制器字段。 s:标签之外还可以使用jsp-el; 表达式 ${postalCode} 也会执行相同的操作。 阅读此文档

If your controller has a getPostalCode property you can do:

<s:textfield name="postalCode"/>

Which will bind the value to the controller field. Outside s: tags you can also use jsp-el; the expression ${postalCode} will do the same. Read this documentation

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