Hi,
I am planning to build a web application using spring framework (v 2.5) and i wanted to check for any compatibility issues. The production version of JBOSS is 4.3.2 GA. Can any one share their...
Type: Posts; User: va1224; Keyword(s):
Hi,
I am planning to build a web application using spring framework (v 2.5) and i wanted to check for any compatibility issues. The production version of JBOSS is 4.3.2 GA. Can any one share their...
i was trying to integrate the sample tutorial security module into my application but i had a question on how do i go into my application after i authenticated the user.
The changes i did are as...
I wanted to integrate SSO capabilities to my spring based application. Looks like Acegi is the default choice. I dont have any complicated login procedure. My application is hosted on the company...
Hi,
I wanted to set up a bean which holds constant values like "DRAFT", "INPROCESS", "PENDING", "REJECT", "ABORT", "RESUBMIT", "COMPLETE".
I wanted to create these strings in a spring bean...
never mind. I did not instantiate the controller correctly. The corrected format helped me fix the NPE
<bean id="worklistManager" class="eirapp.service.WorklistManagerImpl">
<property...
Hi,
I was under the impression that the bean configuration ,for my example below "worklistManager", will provide me with the valid instance of the object on the controller and hence i can call the...
Thank you very much. That worked for me. One last question do i have to always have this default method to handle GETS in my controller?
For everyone, in case you have struggled like me to make...
Ok...i see that in the documentation it says
And in my log i do see that the ModelAndView object = null. In such a case what do i do because if i execute a getModel on the ModelAndView object...
This is what i see in the log file:
INFO: Inside handleRequestInternal
Aug 20, 2008 10:40:04 AM org.springframework.web.servlet.mvc.multiaction.MultiActionController...
can you tell me how this will work
modelAndView.getModel()
because i keep a null pointer exception and i was wondering i am not setting the model any where to begin with and hence the get...
so as a best practice i should avoid this approach to override as far as possible. Can you tell me why this is so?
I dont get any exceptions. I keep seeing "Inside handleRequestInternal" log message. None of my methods are getting called. Attaching my code:
<TABLE border=0 cellpadding=2 cellspacing=1...
I extended a MultiActionController and added a bunch of methods that i mapped from my JSP page.
public ModelAndView addAccount(req,resp)
public ModelAndView updateAccount(req,resp)
public...
My JSP Snippet looks like
<TABLE border=0 cellpadding=2 cellspacing=1 align="center">
<TR>
<TD align="middle" noWrap>
<input class=button align="middle" type="submit"...
Hi,
Can any one suggest how to or provide a link to any documentation to go about configuring multiple command handlers in a spring controller. If a page has say 3 buttons Add, Delete, Update, how...