有人成功使用过Struts 对话插件吗?
该文档说,@ConversationField
在 Action 类中使用注释注释的字段应该保留在整个对话中,这不会发生。
你能帮我使用 Struts 2 的任何其他插件来开发类似向导的应用程序吗?
以下是我的 struts.xml 结构
<package name="wstest" namespace="/wstest" extends="struts-conversation-default">
<action name="*" class="com.bla.bla.WebServiceTestController" method="{1}">
<result name="upload">/WEB-INF/content/wstest/UploadWSDL.jsp</result>
<result name="selectoperation">
/WEB-INF/content/wstest/selectoperation.jsp
</result>
</action>
</package>