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 を使用する場合、サーブレットと JSP の間でオブジェクトを渡す最良の方法は何ですか? 助けが必要です。
オブジェクトを入れてActionFormゲッターを定義するか、リクエスト属性に直接入れます。
ActionForm
JSP では${myActionForm.myObject}、${myAttributeName}(それぞれ) を使用してオブジェクトを取得します。
${myActionForm.myObject}
${myAttributeName}
セッションまたはリクエストの属性としてオブジェクトを設定します。