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.
いくつかのテキスト フィールドとチェック ボックス フィールドを持つ JSP を作成しました。更新という名前のボタンがあります。更新ボタンをクリックすると、入力した値に基づいてデータを更新する必要がありますが、更新ボタンをクリックすると、この同じページにリダイレクトする必要があります。ユーザーによって入力された値が反映されていないことを行っているときに、代わりにページが空の値で開かれます。
この問題の解決策を教えてください。
これは私がそれを行う1つの方法であると信じています。struts-config.xml ファイルでスコープをセッションに設定します。
<action path="/helloWorld" type="com.HelloWorldAction" name="helloWorldForm" scope="session" > <forward name="success" path="tile.helloWorld"> </forward> </action>