留言板

[RESOLVED] com.liferay.portal.NoSuchResourceActionException

thumbnail
Gnaniyar Zubair,修改在14 年前。

[RESOLVED] com.liferay.portal.NoSuchResourceActionException

Liferay Master 帖子: 722 加入日期: 07-12-19 最近的帖子
Hi all,

I created one jsp portlet in plugin. I got the error in the console like:


com.liferay.portal.NoSuchResourceActionException: <portletName>#CONFIGURATION



even i deleted that particular portlet from plugin and server , as well as I have deleted that portlet entry manually from the database(Preference).

But I am getting that error.

How to resolve it?

Thanks in advance

-Gnaniyar Zubair
thumbnail
Shagul Khaja,修改在14 年前。

RE: com.liferay.portal.NoSuchResourceActionException

Liferay Master 帖子: 758 加入日期: 07-9-27 最近的帖子
Did you add that portlet to any page? When do you get the error?
thumbnail
Gnaniyar Zubair,修改在14 年前。

RE: com.liferay.portal.NoSuchResourceActionException

Liferay Master 帖子: 722 加入日期: 07-12-19 最近的帖子
Hi Khaja,

Thanks for your swift reply.

I have added that portlet in one page. It is working successfully at first time. If i refresh next time, i got that error what i mentioned.

- Gnaniyar Zubair.
thumbnail
Shagul Khaja,修改在14 年前。

RE: com.liferay.portal.NoSuchResourceActionException

Liferay Master 帖子: 758 加入日期: 07-9-27 最近的帖子
Did you remove the portlet from the page or just deleted the war? Also which version of Liferay are you using. Do you see the exceptions when you access the page where you added the portlet or other pages too? It is recommended not to work with the database directly to make any changes.

-Shagul
thumbnail
Gnaniyar Zubair,修改在14 年前。

RE: com.liferay.portal.NoSuchResourceActionException

Liferay Master 帖子: 722 加入日期: 07-12-19 最近的帖子
Hi,

I removed the portlet from the page and i got the same error. then, I have removed war file from all the places and that portlet bundle from server also. Still I am getting the error.

Error is appearing in console when i visit that page but In UI, i got "Internal serve Error" .

My last trial was, changes in database entry.


- Gnaniyar Zubair
thumbnail
Archi Madhu,修改在14 年前。

RE: com.liferay.portal.NoSuchResourceActionException

Regular Member 帖子: 237 加入日期: 08-3-25 最近的帖子
Hi there,

May be you can make server down , make resourcecode/resourceaction table empty,and restart server, it will again generate entries in.

let me know if it helps.

-Archi
thumbnail
Gnaniyar Zubair,修改在14 年前。

[RESOLVED]: com.liferay.portal.NoSuchResourceActionException

Liferay Master 帖子: 722 加入日期: 07-12-19 最近的帖子
Hi Archi,

Thanks for your reply. I have fixed this issue successfully. Actually, that is liferay 5.2.3 bug. I have done these modification:


Step 1:

Liferay portal source &gt;&gt;&gt;&gt;&gt;&gt;&gt;
    Go to  /portal-impl/src/com/liferay/portal/service/impl/
    copy this java file :  ResourceLocalServiceImpl.java


Step 2:

Paste the [b]ResourceLocalServiceImpl.java[/b] file here:
        inside ext-impl&gt;src&gt;com&gt;liferay&gt;portal&gt;service&gt;impl&gt;


Step 3:

Modify that java file as mentioned below:

a) import this class

  [color=#200EC5]import com.liferay.portal.service.ResourceActionLocalServiceUtil;[/color]


b) At line no 765 add this code ( blue colored line):

Role role = roleLocalService.getRole(companyId, RoleConstants.OWNER);

[color=#200EC5]765.   ResourceActionLocalServiceUtil.checkResourceActions(resource.getName(), actionIds);[/color]


resourcePermissionLocalService.setResourcePermissions(
resource.getCompanyId(), resource.getName(), resource.getScope(),
resource.getPrimKey(), role.getRoleId(),
actionIds.toArray(new String[actionIds.size()]));


- Gnaniyar Zubair
thumbnail
Abdollah Esmaeilpour,修改在4 年前。

RE: [RESOLVED] com.liferay.portal.NoSuchResourceActionException

Junior Member 帖子: 60 加入日期: 09-8-22 最近的帖子
Archi Madhu:

Hi there,

May be you can make server down , make resourcecode/resourceaction table empty,and restart server, it will again generate entries in.

let me know if it helps.

-Archi
Great. I had this problem and this solution worked for me too.
Nitu Saksena,修改在12 年前。

RE: [RESOLVED] com.liferay.portal.NoSuchResourceActionException

New Member 帖子: 11 加入日期: 11-2-2 最近的帖子
Droping the Liferay database resolved the problem for me.
thumbnail
amit doshi,修改在11 年前。

RE: [RESOLVED] com.liferay.portal.NoSuchResourceActionException

Liferay Master 帖子: 550 加入日期: 10-12-29 最近的帖子
Hi All,

To be more specific on the Archi's Comment, it solved my issue on deleting the entry from the resourceaction table of that particular portlet rather than deleting full table.

Remove that particular portlet from the webapps and once again deploy that portlet.

Your problem will get solved.

Thanks & Regards,
Amit Doshi
thumbnail
Vishal Panchal,修改在11 年前。

RE: [RESOLVED] com.liferay.portal.NoSuchResourceActionException

Expert 帖子: 289 加入日期: 12-5-20 最近的帖子
Hi All,

I have also solved my problem by dropping all the rows of resourceAction table.

Thank you for your contribution..emoticon

Regards,
Vishal
thumbnail
Udaya Kumar Velayudam,修改在9 年前。

RE: [RESOLVED] com.liferay.portal.NoSuchResourceActionException

New Member 发布: 1 加入日期: 13-1-22 最近的帖子
I also having the same problem. When I deleted the entry from ResourceAction it worked but wanted to know how Liferay generate the entries in the table? Are there any foreign key constraint that would affect this table?