Foren

how to use then one java class as a portlet-class

harish chandra maurya, geändert vor 11 Jahren.

how to use then one java class as a portlet-class

New Member Beiträge: 2 Beitrittsdatum: 24.10.12 Neueste Beiträge
Hi

I am new to liferay developement .I am trying to creating MVC portlet , with more then one jsp, now i want to use per java class for per jsp for action and render , how can i use . for portlet.xml i can move to and jsp Example view.jsp ... and from there i can save thing to database using portlet-class, after that i want to move to other jsp that can be done by using render action now for 2nd jsp i want to save other values to database.... now i want to use another java class or portlet-class how i do the mapping .

Can any one help me on that

Thanks

Anhänge:

thumbnail
Jignesh Vachhani, geändert vor 11 Jahren.

RE: how to use then one java class as a portlet-class

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
Harish,

Ideally controller will be unique for MVC structure i think. So you can definitely call different methods from different classes in controller class it self and can achieve your requirement.
Or else you can use struts portlet which can call different action classes as per the struts action URL.
thumbnail
Gnaniyar Zubair, geändert vor 11 Jahren.

RE: how to use then one java class as a portlet-class

Liferay Master Beiträge: 722 Beitrittsdatum: 19.12.07 Neueste Beiträge
A portlet can have only one portlet class which you have configured in portlet.xml. Based on your RENDER or ACTION URL, you process or render action will be triggered .

ACTIONURL
=========
<liferay-portlet:actionurl name="addMethod"></liferay-portlet:actionurl> , this url will trigger you action method from your portlet class....

public class TestPortlet extends MVCPortlet {

public void addMethod(ActionRequest actionRequest,
			ActionResponse actionResponse) throws IOException, PortletException {
      // logic goes here
}
}

Like that, you can have "N" number action method in your portlet class.

RENDERURL:
===========

<liferay-portlet:renderurl var="testRenderURL">
	<liferay-portlet:param name="jspPage" value="/html/portlet/test/test.jsp" />
</liferay-portlet:renderurl>

<a href="<%=testRenderURL.toString()%>"></a> Go to test page 


if you mention "jspPage" parameter with your render URL, it will directly go to that particular jsp file through doView/render method of your portlet class.

if you dont mention "jspPage" parameter with renderURL, then you have to redirect to jsp file from doView/render method .

HTH

- Gnaniyar Zubair
harish chandra maurya, geändert vor 11 Jahren.

RE: how to use then one java class as a portlet-class

New Member Beiträge: 2 Beitrittsdatum: 24.10.12 Neueste Beiträge
Thanks,for the fruit full answer
Seeya S Kudtarker, geändert vor 11 Jahren.

RE: how to use then one java class as a portlet-class

Regular Member Beiträge: 187 Beitrittsdatum: 16.01.13 Neueste Beiträge
Sorry for interupting the post.
I have a similar query.

I have my portlet class in package com.test.portal. I have included two more classes in it, say a.java and b.java just to make my code clean by including similar functions in one class.

How should I access the functions from a.java or b.java since whenver we specify action in form, it goes to the Action class?