留言板

Liferau 7 PortletProps not work

Montej Shah,修改在7 年前。

Liferau 7 PortletProps not work

Junior Member 帖子: 48 加入日期: 15-2-18 最近的帖子
Hi all,
I have created portlet in liferay 7.
I have used below code in controller.
PortletProps.get("subject.list.id")


This code require com.liferay.util.java module.
I have import the com.liferay.util.java-2.2.2.jar as module in liferay 7.
Also add dependency as below in my maven project.

<dependency>
<groupId>com.liferay.portal</groupId>
<artifactId>com.liferay.util.java</artifactId>
<version>2.2.2</version>
<scope>provided</scope>
</dependency>


When i add portlet in to page it give below error.

12:37:42,138 ERROR [http-nio-8080-exec-5][status_jsp:950] com.liferay.portal.kernel.portlet.PortletContainerException: com.liferay.portal.kernel.portlet.PortletContainerException: javax.servlet.ServletException: java.lang.NoClassDefFoundError: Could not initialize class com.liferay.util.portlet.PortletProps


How to resolve this?
Is there any other way to get properties from liferay 7's portlet.properties file?
thumbnail
Tejas Kanani,修改在7 年前。

RE: Liferau 7 PortletProps not work

New Member 发布: 1 加入日期: 16-12-23 最近的帖子
Montej,

Were you able to pass through the issue you were facing while using
PortletProps.get("subject.list.id")
?
If yes, would you please share the solution for it here ?

Thanks.
thumbnail
Aravinth Kumar,修改在6 年前。

RE: Liferau 7 PortletProps not work

Regular Member 帖子: 152 加入日期: 13-6-26 最近的帖子
Hi,
If you solved this issue already can you please post your solution over here. Do anyone have same type of issue ?

Thanks in Advance.

Regards,
Aravinth
mahesh gade,修改在6 年前。

RE: Liferau 7 PortletProps not work

Junior Member 帖子: 44 加入日期: 13-12-5 最近的帖子
Hi friends ,

Any one have found the solution for this issue.

Thanks.
thumbnail
mouli siripurapu,修改在6 年前。

RE: Liferau 7 PortletProps not work

New Member 帖子: 5 加入日期: 14-2-10 最近的帖子
Add this line into bnd.bnd file:
Include-Resource: \
@com.liferay.util.java-2.0.1.jar


Update the dependency in bulid.gradle file
compileOnly group: "com.liferay.portal", name: "com.liferay.util.java", version: "2.0.1"

And then Refresh->Depoly....