Liferay Portal 请求历程解析

Liferay Portal 请求过程解析Portlet render请求解析1、请求经过MainServlet,再转交PortalRequestProcessor

Liferay Portal 请求过程解析

Portlet render请求解析

   1、请求经过MainServlet,再转交PortalRequestProcessor
    默认交给LayoutAction,由LayoutAction分发到render_portlet.jsp。
   

     if (Validator.isNotNull(redirectLocation)) {              response.sendRedirect(redirectLocation);           return null;}

   
    由此可见LayoutAction在Liferay的请求解析中扮演着一个非常重要的角色。