I spent hours reading and trying to figure out what was the problem. These are my findings ...
Example code. (ERROR)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<portlet> | |
<portlet-name>COMMON_BACKUP_RESTORE</portlet-name> | |
<display-name>Backup-Restore</display-name> | |
<portlet-class>com.ng.framework.portlet.NGStrutsPortlet | |
</portlet-class> | |
<init-param> | |
<name>view-action</name> | |
<value>/ext/ng/backup_restore/view</value> | |
</init-param> | |
<expiration-cache>0</expiration-cache> | |
<supports> | |
<mime-type>text/html</mime-type> | |
</supports> | |
<resource-bundle>com.liferay.portlet.StrutsResourceBundle | |
</resource-bundle> | |
<portlet-preferences> | |
<preference> | |
</preference> | |
</portlet-preferences> | |
<security-role-ref> | |
<role-name>power-user</role-name> | |
</security-role-ref> | |
<security-role-ref> | |
<role-name>user</role-name> | |
</security-role-ref> | |
</portlet> |
We are interested in this specific line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resource-bundle>com.liferay.portlet.StrutsResourceBundle | |
</resource-bundle> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resource-bundle>com.liferay.portlet.StrutsResourceBundle</resource-bundle> |
That's it! Hope it helps you.