Struts 2 会话值
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实现 SessionAware 接口和未实现的方法。之后你只需要在Map中添加参数即可。该映射将包含所有会话变量值作为键值对。您可以在地图中添加、删除值。
这是 Action 类的示例
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
如果您实现 SessionAware,那么您的操作将收到一个包含会话变量的 Map。如果一个操作将一个值放入映射中:
那么后续操作可以从映射中检索该值:
If you implement SessionAware then your actions will receive a Map containing the session variables. If one action puts a value into the map:
then later actions can retrieve that value from the map: