Redirecting user default landing page in liferay



Define "Default Landing Page" in Control Panel ---> Portal setting 

and put below logic in your class

String defaultPagePath = PrefsPropsUtil.getString(themeDisplay.getCompanyId(), 
PropsKeys.DEFAULT_LANDING_PAGE_PATH);

response.sendRedirect(defaultPagePath);

The above redirtects to the page where you have defined the value in the portal setting.

Comments

Popular posts from this blog

Theme display in javascript

How to know which liferay version we are using

Viewing the SQL Query in liferay : debugging the SQL Query in Hibernate