Struts 2 会话值

发布于 2024-09-06 06:24:36 字数 88 浏览 2 评论 0原文

我需要使用 Struts2 和操作类将一些字段值从一个 jsp 传递到另一个 jsp。任何人都可以建议我最好的方法吗?如何使用SessionAware接口传递值?

I need to pass some field values from one jsp to another jsp using Struts2 and action classes. Can any one suggest me the best way to do it. How to pass values using SessionAware interface?

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

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

发布评论

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

评论(2

老旧海报 2024-09-13 06:24:36

实现 SessionAware 接口和未实现的方法。之后你只需要在Map中添加参数即可。该映射将包含所有会话变量值作为键值对。您可以在地图中添加、删除值。

这是 Action 类的示例

public class SampleForm implements SessionAware{
  //Fields that hold data
  private String Welcome1="";
  // This Map will contain vales in Session
  private Map session;

  public String execute() throws Exception {
        return SUCCESS;
  }
  public void setWelcome1(String s) {
    this.Welcome1= s;
  }
  public String getWelcome1() {
    return Welcome1;
  }
  public void setSession(Map session) {
    this.session = session;
  }

  public Map getSession() {
    return session;
  }

}

Implement SessionAware interface and unimplemented methods. After this you just need to add parameter in Map. The Map will contain all session variable vales as Key value pair. you can add, remove values from Map.

Here is a Example of Action Class

public class SampleForm implements SessionAware{
  //Fields that hold data
  private String Welcome1="";
  // This Map will contain vales in Session
  private Map session;

  public String execute() throws Exception {
        return SUCCESS;
  }
  public void setWelcome1(String s) {
    this.Welcome1= s;
  }
  public String getWelcome1() {
    return Welcome1;
  }
  public void setSession(Map session) {
    this.session = session;
  }

  public Map getSession() {
    return session;
  }

}
想你的星星会说话 2024-09-13 06:24:36

如果您实现 SessionAware,那么您的操作将收到一个包含会话变量的 Map。如果一个操作将一个值放入映射中:

session.put("username", "Newbie");

那么后续操作可以从映射中检索该值:

String username = session.get("username");

If you implement SessionAware then your actions will receive a Map containing the session variables. If one action puts a value into the map:

session.put("username", "Newbie");

then later actions can retrieve that value from the map:

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