Fórum

Liferau 7 PortletProps not work

Montej Shah, modificado 7 Anos atrás.

Liferau 7 PortletProps not work

Junior Member Postagens: 48 Data de Entrada: 18/02/15 Postagens Recentes
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, modificado 7 Anos atrás.

RE: Liferau 7 PortletProps not work

New Member Mensagem: 1 Data de Entrada: 23/12/16 Postagens Recentes
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, modificado 6 Anos atrás.

RE: Liferau 7 PortletProps not work

Regular Member Postagens: 152 Data de Entrada: 26/06/13 Postagens Recentes
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, modificado 6 Anos atrás.

RE: Liferau 7 PortletProps not work

Junior Member Postagens: 44 Data de Entrada: 05/12/13 Postagens Recentes
Hi friends ,

Any one have found the solution for this issue.

Thanks.
thumbnail
mouli siripurapu, modificado 6 Anos atrás.

RE: Liferau 7 PortletProps not work

New Member Postagens: 5 Data de Entrada: 10/02/14 Postagens Recentes
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....