Forums de discussion

Liferau 7 PortletProps not work

Montej Shah, modifié il y a 7 années.

Liferau 7 PortletProps not work

Junior Member Publications: 48 Date d'inscription: 18/02/15 Publications récentes
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, modifié il y a 7 années.

RE: Liferau 7 PortletProps not work

New Member Envoyer: 1 Date d'inscription: 23/12/16 Publications récentes
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, modifié il y a 6 années.

RE: Liferau 7 PortletProps not work

Regular Member Publications: 152 Date d'inscription: 26/06/13 Publications récentes
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, modifié il y a 6 années.

RE: Liferau 7 PortletProps not work

Junior Member Publications: 44 Date d'inscription: 05/12/13 Publications récentes
Hi friends ,

Any one have found the solution for this issue.

Thanks.
thumbnail
mouli siripurapu, modifié il y a 6 années.

RE: Liferau 7 PortletProps not work

New Member Publications: 5 Date d'inscription: 10/02/14 Publications récentes
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....