Questions tagged [liferay-ide]

Liferay IDE is the official set of Eclipse plug-ins supporting development for the Liferay Portal application platform.

Liferay IDE is the official set of Eclipse plug-ins supporting development for the Liferay Portal application platform.

It provides support for developing all plugins of liferay including Portlets,themes,hooks,layouts and ext-plugins

It is available as a set of Eclipse plug-ins installable from an update-site or an an all-in-one download. For installation use one of the following methods:

  1. Update site URLs for Eclipse 3.6.x,3.7.x,3.8.x/4.2.x: http://releases.liferay.com/tools/ide/eclipse/juno/stable/
  2. Download all-in-one bundles from here: http://www.liferay.com/downloads/liferay-projects/liferay-ide

For full installation instructions see the official documentation for installation. Then you can see the getting started tutorial here.

Liferay developer studio

It is a bundle of Eclipse+Liferay plugins available for Liferay enterprise edition(Liferay EE) customers.It provides additional features on top of the basic eclipse Liferay plugin.

  • Apart from tomcat,it provides additional support for Weblogic and websphere adapters
  • It provides Kaleo designer to create and design custom workflows

Additional references Liferay IDE vs Liferay developer studio

209 questions
0
votes
1 answer

Creating liferay plugin and getting error

Please help me to resolve this error. Whenever I try to create liferay plugin project I am getting an error stating: "Error creating liferay plugin project. please see the log for more detail" In the log it is showing: caused by …
raman rayat
  • 404
  • 5
  • 15
0
votes
1 answer

Hit event on before every action in liferay means pre action event

I need to call the one method before action method calls in portlet controller. So here I am using a hook like: Create Hook Create a class and extend Action. Override run method write my own logic. Create portal.properties file and added following…
0
votes
0 answers

Vaadin Liferay Portlet Project using Liferay 6.0.6 and Eclipse Luna

I have a question about Vaadin Liferay Portlet. I'm new for this. I have to use an old Liferay Portal (6.0.6). I have to develop a new Vaadin portlet in this portal. I downloaded Eclipse Luna IDE and I installed liferay-plugins-sdk-6.0.6-20110225…
Safari
  • 11,437
  • 24
  • 91
  • 191
0
votes
3 answers

Liferay maven dependency could not be resolved

I am using liferay 6.2.10.4 enterprise edition with maven.while deploying it with maven clean package commad I got below error. The following artifacts could not be resolved: com.liferay.portal:portal-service:jar:6.2.10.4,…
0
votes
1 answer

Liferay 6.2. social office user bar and dockbar

In users' personal sites pages(/user/xx/so/dashboard), user bar and dockbar are not accessible from any user without the power user or administrator role. In every other site's page, users can normally access it without these 2 roles. Why is this…
jkonst
  • 433
  • 6
  • 20
0
votes
1 answer

How to import Liferay theme?

I am trying to import a default Luminis Platform theme (LP5-ellucian-theme) which I copied from a Test server onto my local machines so I can do some theme development. I copied this theme folder into my PluginsSDK/themes/ directory, but when I go…
Fetus
  • 985
  • 2
  • 12
  • 23
0
votes
0 answers

How to import Liferay .lpkg theme into Liferay Developer Studio?

I downloaded a Liferay theme from Liferay Marketplace, as a .lpkg file. I want to modify it a bit. How can I import it into Liferay Developer Studio? I tried unzipping it, unzipping the *-theme-*.war inside, copying the folders to the root of a new…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
0
votes
1 answer

How to add an existing server to Liferay Developer Studio?

When I run Liferay Developer Studio 1.6.3, the Servers panel is empty. I can add a new server using the context menu, but how to add an existing Tomcat server?
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
0
votes
3 answers

Calling Liferay Service Builder's XXXLocalServiceUtil throws ClassNotFoundException

I'm trying to call , from portlet B, a method of XXXLocalServiceUtil which has been created on portlet A with service builder. I have imported the exact same jar of portlet A in /WEB-INF/lib of portlet B but as it seems in the log a…
jkonst
  • 433
  • 6
  • 20
0
votes
1 answer

Creating Model Listener on liferay Social Plugin

I have created my custom Model Listener for Social Office Calendar as this thread suggests but when trying to extend my plugin the build fails and the reason is that the target "compile-java" does not exist in the project. BUILD…
jkonst
  • 433
  • 6
  • 20
0
votes
1 answer

Liferay: error opening service.xml

I am using liferay for a project. I tried creating service.xml using an option NEW LIFERAY SERVICE BUILDER. But I got the below error whenever I tried opening the service.xml. Error Tue Jul 15 12:52:10 IST 2014 Plug-in…
Rajkumar
  • 189
  • 5
  • 19
0
votes
2 answers

How Deploy Our WebApp into Liferay

I am new to Liferay, I have a webapp (built with Struts/Spring/Hibernate). My question is how to deploy this WebApp into Liferay 6.2 Environment. Is this possible?
sasi
  • 4,192
  • 4
  • 28
  • 47
0
votes
1 answer

Editing multiple themes in Liferay already deployed on the server

I'm still familiarizing myself with Liferay. I currently have liferay 6.1, running on Glassfish on a linux server. Right now, I'm trying to edit and view the edits of multiple themes that I have downloaded and included in my themes location of a…
Randnum
  • 1,360
  • 4
  • 32
  • 48
0
votes
1 answer

In Liferay 6.2 unable to pass object from class to jsp

I am trying to set an attribute of type list in a class and getting the attribute from the class to jsp by using following: First setting the attribute by using actionRequest.setAttribute("SEARCH_RESULT",result); For getting the object using the…
Saleem Khan
  • 339
  • 3
  • 16
0
votes
4 answers

Unable to redirect to other page in liferay

I am trying to redirect to other page using java code and don't no why its not getting redirected. the below is the following code ThemeDisplay themeDisplay = (ThemeDisplay)actionRequest.getAttribute(WebKeys.THEME_DISPLAY); PortletConfig…