Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Struts1 时,在 servlet 和 JSP 之间传递对象的最佳方式是什么?需要帮助。
只需将对象放入您的ActionForm并为它们定义 getter,或直接将它们放入请求属性中。
ActionForm
在JSP 中,使用${myActionForm.myObject}(${myAttributeName}分别)来获取对象。
${myActionForm.myObject}
${myAttributeName}
将对象设置为会话或请求的属性。