gpt4 book ai didi

java - Struts 中的向导表单

转载 作者:行者123 更新时间:2023-11-29 03:59:02 28 4
gpt4 key购买 nike

我正在 Struts 中创建一个向导。它包含4个步骤。对于每个步骤,我都有单独的 ActionClass 说:-

  • Step1Action.java
  • Step2Action.java
  • Step3Action.java
  • Step4Action.java

并且在每个类中有 2 个方法 input()process()

  • input() 方法用于在输入模式下显示页面
  • process() 方法将用于处理提交的数据(如果验证正常)

我将所有数据带到 session 的最后一步。并在最后一步将它们全部保存在数据库中

struts.xml 中类似 4 个 Action 标签,例如:-

    <action name="step1" class="com.mycomp.myapp.action.Step1Action1" method="input">                       
<result name="success" type="redirectAction">step2</result>
<result name="input">/view/step1.jsp</result>
</action>

<action name="step2" class="com.mycomp.myapp.action.Step1Action2" method="input">
<result name="success" type="redirectAction">step3</result>
<result name="input">/view/step2.jsp</result>
</action>

但我觉得我做错了。请告诉我我将如何处理此案?

最佳答案

如果您正在尝试开发一些类似向导的功能,那么在 struts2 中已经有一个用于相同范围拦截器的拦截器这是相同的详细信息 http://struts.apache.org/2.0.14/docs/scope-interceptor.html

关于java - Struts 中的向导表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4614548/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com