任何人都成功使用了Struts conversation plugin?
文档说在Action类中注释带有@ConversationField
注释的字段应该保留在整个对话中,这不会发生。
你可以帮我使用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>