| Author |
Liferay 6.0.6 + Struts 2.2.3
|
E. Tse
Greenhorn
Joined: Oct 13, 2007
Posts: 14
|
|
Dear all,
Have you encountered similar problems when developing portlet using struts 2 portlet plugin 2.2.3 ?
Screen Flow:
- input
- update
- if success -> set action message "blah blah blah is success", clear form value
- if failed -> set error "blah blah blah has error", retain form values
My Struts Config:
<package name="xxadminView" namespace="/admin/view" extends="struts-portlet-default">
<action name="input" method="input" class="com.ActionSupportAction">
<result name="success">/WEB-INF/jsp/view/input.jsp</result>
</action>
<action name="update" method="update" class="com.ActionSupportAction">
<result name="success" type="redirectAction">
<param name="actionName">input</param>
<param name="portletMode">view</param>
</result>
<result name="error" type="chain">input</result>
</action>
</package>
Results:
The requested resource (/my-portlet/view/input) is not available
Thanks,
Eric
|
 |
E. Tse
Greenhorn
Joined: Oct 13, 2007
Posts: 14
|
|
|
so surprised that no one use struts 2 plugins in Liferay.....
|
 |
manish jaiswal
Greenhorn
Joined: Aug 15, 2011
Posts: 5
|
|
Hi Eric ,
I think there was some issue in 6.0.5 Liferay for struts portlet . I dont know if it is OK in 6.0.6 Version for more refer to forums and blog in liferay.com
Regards
Manish
|
 |
 |
|
|
subject: Liferay 6.0.6 + Struts 2.2.3
|
|
|