InterviewSolution
Saved Bookmarks
| 1. |
What Is A Portlet Lifecycle? |
|
Answer» Following is the portlet lifecycle: init(): It mainly INITIALIZES the portlet. render(): It takes the HTML OUTPUT to User Interface. It mainly render the view in term of JSP/HTML code and show into the respective portlet. Destroy: This method takes CARE of releasing the portlet resources. Following is the portlet lifecycle: init(): It mainly initializes the portlet. render(): It takes the HTML output to User Interface. It mainly render the view in term of JSP/HTML code and show into the respective portlet. Destroy: This method takes care of releasing the portlet resources. |
|