DEVCON 2026    |    2-5 November 2026 – QEII Centre – London, UK    |    Register now! 

Live Webinar    |    June 30    |    CE is sunsetted. What's your next move?    |    Register now! 

Blogs

Calling OOTB portlet struts actions

Sushil Patidar
Sushil Patidar
Kevesebb, mint egy perces olvasmány

Many a time it is required to call OOTB portlet struts action from custom portlets.This can be done using the simple approach as follows.

 

public class TestPortlet extends MVCPortlet{
 
 @Override
 public void processAction(ActionRequest actionRequest,
 ActionResponse actionResponse)
 throws IOException, PortletException {
 
    try {
       
        PortletActionInvoker.processAction(
         "com.liferay.portlet.documentlibrary.action.EditFolderAction",                               getPortletConfig(),
          actionRequest, actionResponse);
 
     }
     catch(Exception e) {
 
        e.printStackTrace();
     }
}
 
}
Hozzászólások az oldalhoz

Related Assets...

Nincsenek találatok

More Blog Entries...

Ben Turner
június 19, 2026
David H Nebinger
június 17, 2026