2
votes
1answer
70 views
Rewrite spring-security redirect URLs
I'm trying to get Tuckey UrlRewriteFilter to tidy up URLs for my webapp. One problem I've got is that when spring-security notices that an anonymous user is trying to access a prot …
0
votes
3answers
51 views
Spring Advice - submitting a form
Hi,
I am having serious problems with code I have written with Spring so I have decided to start from scratch and ask for advice. Here are my requirements:
When the page first …
0
votes
1answer
28 views
How to implement Logout feature using Spring Web Mvc
Hello All...
I am new to Spring Web MVC..
Can I get some example or online link that shows me how to implement logout feature using spring web mvc ?
I don't want to use the in b …
0
votes
1answer
11 views
multi-staged form using spring
hi all, please forgive me for this stupid questions. I just started developing web application using spring yesterday.
The project that i worked on, have a multi staged form, that …
0
votes
1answer
47 views
Exception thrown after processing onSubmitAction
Hi,
I am very new to Spring and I have a simpleFormController with 2 methods. referenceData() with is called when the page loads and onSubmitAction() which is called on the submi …
1
vote
1answer
20 views
Spring MVC Annotations with Global Context context:component-scan?
I have a spring dispatcher servlet with servlet-name "spring-mvc". The spring-mvc-servlet.xml appears as follows:
<bean id="viewResolver"
class="org.springframework.web.se …
1
vote
2answers
63 views
SimpleFormController help
Hi,
I am very new to Spring and I have been given some basic instructions to move some code into a new project that uses Spring and I am having trouble with the SimpleFormControll …
0
votes
4answers
64 views
Implementing Spring MVC 3.0 controller
Trying to implement clean URLs (without .form, .do, etc.) with Spring MVC 3.0 (actually it's a basic example from Spring reference).
The problem that it just don't work: http://loc …
0
votes
5answers
112 views
Best way to do Spring MVC without JSP?
I wish to use Spring MVC to provide a REST web service. However, running through some books and tutorials, it looks like ModelAndView always returns a parsed JSP file. I guess I co …
1
vote
1answer
73 views
Resource Bundle Spring
How can I access the messages from a resource bundle in Spring MVC inside a class that extends from AbstractController?
I have tried getMessageSourceAccessor().getMessage("a.messa …
0
votes
2answers
110 views
How to use Ajax JQuery in Spring Web MVC
Hello All..
I am using spring web mvc for my application.
I have 1 dropdown list in my JSP View, coming from following request called savegroup.htm
<bean name="/savegroup.htm …
0
votes
0answers
26 views
Spring MVC on Oracle 11gR1
Hi
I am using Eclipse webtools to develop a hello world application that runs on oracle 11gR1 development server. I use the Oracle eclipse tools to perform the deployment on the s …
0
votes
2answers
46 views
Spring integration with Struts 1 - injecting dependencies to the ActionForm
Hi all,
We are expanding an old Struts 1 project to be Spring managed - yet we wish to change the code and the flow as little as possible. We have therefore decided to leave Strut …
1
vote
1answer
56 views
How can I Convert XML to an Object using Spring 3.0 mvc while making RESTful request
Hi,
I'm using the Spring 3.0 RC1 framework and I'm currently testing out Spring mvc. I wanted to use Spring mvc to handle restful requests. I have set up my controller to handl …
2
votes
1answer
19 views
getModel() vs getModelMap() in ModelAndView
Which one has to be used when ?
When I see the source code of ModelAndView class, getModel() is simpling calling the getModelMap(), Why are there two different methods doing same …
