0
votes
1answer
22 views

Java spring portlet extends GenericPortlet how to autowire dependencies

I am using java - spring - portlet I want to keep using my portlet as extend to GenericPortlet but i want to use spring dependency injections. Currently i found the work around which is as follows ...
0
votes
0answers
76 views

Primefaces <p:ajax update=“@all” /> doesn't work

I've got a problem with using p:ajax update atribute element. When I use in my code <p:ajax update="@all" /> then I am getting javax.el.PropertyNotFoundException. When I use <f:ajax ...
0
votes
0answers
24 views

Different web application use same framework but different verions

I'm trying to arrange the jar and priority for class loading in all my portlet but I'm confusing in some part. Now the core of portal use spring 3.0.X and I have portlet that use spring 3.1 how can ...
-2
votes
2answers
25 views

Error while deploying my application

FATAL ERROR STARTING UP STRUTS-SPRING INTEGRATION **** Looks like the Spring listener was not configured for your web app! Nothing will work until WebApplicationContextUtils returns a valid ...
0
votes
2answers
123 views

How i convert spring project to liferay?

I developped an application (spring, hibernate) and i must convert it to liferay Project how i can do it? please could you help me thank you.
0
votes
0answers
79 views

ModelAndView redirect request does not work in liferay 6

Our Spring based portlet works great on Liferay 5 but not on Liferay 6. For some reason when doing redirect using new ModelAndView("redirect", desiredRedirectViewId, listOfReports); It works only ...
0
votes
0answers
191 views

how to integrate spring 3.1.2 RELEASE in liferay 6.1 GA2

I don't know how to do it: What i have to know about the context-application? What about for dependency? I use this for application-context: <beans ...
0
votes
1answer
238 views

Failing to call spring bean from portlet

I have Spring bean as below: @Service("bookService") public class BookServiceImpl implements BookService { @Autowired @Qualifier("bookDao") private BookDao bookDao; i have a portlet ...
1
vote
1answer
221 views

Is it possible to use Spring @Autowired in Liferay hook?

I wonder if it is possible to have a bean form xml file injected by @Autowired somehow into Liferay hook. In this particular case I'm using UpgradeProcess hook. My project is already configured for ...
0
votes
1answer
96 views

Can I use spring liferay for mobile web development

Can I use spring liferay for mobile web development? This is very basic question but I tried on google but I can't find any tutorial on this. Can anyone suggest anything on this.
0
votes
3answers
2k views

Portlet:actionurl is not going to @Actionmapping in controller

I am using Liferay portal-6 with Spring-3. In my portlet, first it goes to the @Rendermapping without params and displays the default jsp, when I click on a button I am passing the actionurl, but its ...
0
votes
0answers
203 views

Using ajax inside the Web Content Display Portlet

I am using the liferay community edition 6.0. One of the pages will be using only the Web Content Display portlet to add content to it. I want to achieve the following inside that content i will load ...
0
votes
1answer
1k views

How to Set Form Bean before it goes to JSP page

I am an absolute beginner. So please bear with me if I miss the obvious. Environment I am using: Spring Portlet MVC (3.0), Liferay 6.0.6 I have a controller, a form bean and a JSP page. I am able ...