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,其中包含一些文本和复选框字段。还有一个名为 update 的按钮。单击更新按钮时,我必须根据输入的值更新数据。但问题是单击更新按钮时,我必须重定向到同一页面。当我这样做时,用户输入的值没有得到反映,而是页面以空值打开。
请为此问题提供一些解决方案。
这是我认为的一种方法。将 struts-config.xml 文件中的范围设置为 session。
<action path="/helloWorld" type="com.HelloWorldAction" name="helloWorldForm" scope="session" > <forward name="success" path="tile.helloWorld"> </forward> </action>