Spring MVC is an action-based (as opposed to component-based) web framework built on top of the Spring IOC Container. MVC stands for Model View Controller, a long standing design pattern that layers an application separating presentation concerns from business logic see Portland Pattern Repository's ...
53
votes
12answers
32k views
Spring MVC 3 and handling static content - am I missing something?
I am developing a webapp using Spring MVC 3 and have the DispatcherServlet catching all requests to '/' like so (web.xml):
<servlet>
<servlet-name>app</servlet-name>
...
11
votes
2answers
14k views
JQuery, Spring MVC @RequestBody and JSON - making it work together
I would like to have a bidirectional JSON to Java serialization
I'm using successfully the Java to JSON to JQuery path... (@ResponseBody)
e.g.
@RequestMapping(value={"/fooBar/{id}"}, ...
10
votes
8answers
15k views
Who sets response content-type in Spring MVC (@ResponseBody)
I'm having in my Annotation driven Spring MVC Java web application runned on jetty web server (currently in maven jetty plugin).
I'm trying to do some AJAX support with one controller method ...
3
votes
2answers
922 views
@Service are constructed twice
I have a problem with my Spring application where my @Service classes are being created twice when the application starts. I know this is a problem with my configuration, as I've experienced it ...
7
votes
4answers
4k views
What is recommended way for spawning threads from a servlet in Tomcat
Probably a repeat! I am using Tomcat as my server and want to know what is best way to spawn threads in the servlet with deterministic outcomes. I am running some long running updates from a servlet ...
22
votes
7answers
14k views
Can SpringMVC be configured to process all requests, but exclude static content directories?
If I map my spring application to process all incoming requests ('/*'), then requests for static content return 404's. For example, a request for "myhost.com/css/global.css" would return a 404, even ...
16
votes
6answers
43k views
No mapping found for HTTP request with URI [/WEB-INF/pages/apiForm.jsp]
My handler forwards to internalresourceview 'apiForm' but then i get error 404 RequestURI=/WEB-INF/pages/apiForm.jsp. I'm sure apiForm.jsp located in /WEB-INF/pages/
13:45:02,034 DEBUG ...
7
votes
3answers
6k views
Howto get rid of <mvc:annotation-driven />?
Up to now, <mvc:annotation-driven /> has caused plenty of trouble for me, so I would like to get rid of it. Although the spring framework docs clearly say what it is supposed to be doing, a ...
1
vote
2answers
578 views
Why DispatcherServlet creates another application context?
I have configured the root application context using ContextLoaderListener and the context init-parameter contextConfigLocation.
The root context is then accessed by JSF (*.jsf) variable-resolver. It ...
1
vote
5answers
13k views
Spring configure @ResponseBody JSON format
Imagine I have this annotated method in a Spring 3 @Controller
@RequestMapping("")
public @ResponseBody MyObject index(@RequestBody OtherObject obj) {
MyObject result = ...;
return result;
}
...
2
votes
3answers
1k views
Tiles 2 And No mapping found for HTTP request with URI - Spring-MVC
I want to use Spring-Tiles intergration. Here you can see how my app looks like.
So my question is: why Spring-MVC dispatcher Servlet can not resolve my Target page ???
24
votes
3answers
35k views
Can anyone explain servlet mapping?
I'm trying to write a web application using SpringMVC. Normally I'd just map some made-up file extension to Spring's front controller and live happily, but this time I'm going for REST-like URLs, ...
11
votes
4answers
15k views
how to display custom error message in jsp for spring security auth exception
I want to display custom error message in jsp for spring security authentication exceptions.
For wrong username or password,
spring displays : Bad credentials
what I need : Username/Password ...
3
votes
3answers
2k views
What technologies are best for my application: Struts with Hibernate or Spring with Hibernate
I have a working knowledge of Struts2 and Spring. I want to develop an application that manages information for multiple companies. I am totally confused about what technologies are best for my ...
4
votes
3answers
5k views
Spring MVC -> JSON response
I hava a JAVA EE backend and I am using Spring MVC. I have a AJAX call like this:
function getAllProjects() {
$.getJSON("project/getall", function(allProjects) {
???
});
...
1
vote
2answers
2k views
User Granted Authorities are always : ROLE_ANONYMOUS?
i am using the following method to make a programmatic login after registration
private void autoLogin(User user,
HttpServletRequest request)
{
GrantedAuthority[] grantedAuthorities ...
7
votes
3answers
5k views
Infinite Recursion with Jackson JSON and Hibernate JPA issue
When trying to convert a JPA object that has a bi-directional association into JSON, I keep getting
org.codehaus.jackson.map.JsonMappingException: Infinite recursion (StackOverflowError)
All I ...
3
votes
2answers
2k views
How to pass a session attribute as method argument (parameter) with Spring MVC
In short, I want something like:
public String action(@SessionAttribute User user) {..}
instead of
public String action(HttpSession session) {
User user = session.getAttribute("user");
}
...
2
votes
2answers
505 views
Programmatically login in a user using spring security
The opposite of this.
In my app I have register new user screen, which posts to a controller which creates a new user within db (and does a few obvious checks).I then want this new user to be ...
3
votes
1answer
2k views
Spring MVC Mapping problem
I have what I thought was a simple Spring MVC app. However, I can seem to set the requestMappings correctly. What's strange is that the logs show that the url is mapped to the proper controller, yet ...
0
votes
1answer
1k views
jsp page encoding problem
I home some problems with encoding of data in JSP page (I'm using a Spring-MVC).
It looks like this:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%
...
34
votes
10answers
24k views
What are the best books for Spring and Spring MVC? [closed]
My team is about to build a new product and we are using Spring and Spring MVC. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.
My manager will be ...
16
votes
6answers
7k views
In Spring MVC, how can I set the mime type header when using @ResponseBody
I have a Spring MVC Controller that returns a JSON String and I would like to set the mimetype to application/json. How can I do that?
@RequestMapping(method=RequestMethod.GET, value="foo/bar")
...
16
votes
7answers
25k views
Spring 3.0 making JSON response using jackson message converter
i configure my messageconverter as Jackson's then
class Foo{int x; int y}
and in controller
@ResponseBody
public Foo method(){
return new Foo(3,4)
}
from that i m expecting to return a JSON ...
4
votes
4answers
4k views
How to process a form login using Spring Security / Spring MVC
Simple question, I just need a pointer in the right direction:
I have a simple Spring MVC/Spring Security webapp. Initially I set up Spring Security so that the default login page shows and ...
5
votes
4answers
5k views
Custom HttpMessageConverter with @ResponseBody to do Json things
I don't like Jackson.
I want to use ajax but with Google Gson.
So I'm trying to figure out how to implement my own HttpMessageConverter to use it with @ResponseBody annotation.
Can someone take a time ...
1
vote
6answers
3k views
getting started with spring framework [closed]
What is the best way to start with spring framework, I've already got a book Spring in action 2nd edition august 2007, but here is the thing, I'm missing some general knowledge concerning this ...
15
votes
3answers
13k views
Multiple Spring @RequestMapping annotations
Is it possible to use multiple @RequestMapping spring annotations in a method? Like:
@RequestMapping("/")
@RequestMapping("")
@RequestMapping("/welcome")
public String welcomeHandler(){
...
7
votes
2answers
2k views
How to match a Spring @RequestMapping having a @pathVariable containing “/”?
I am doing the following request from the client:
/search/hello%2Fthere/
where the search term "hello/there" has been URLencoded.
On the server I am trying to match this URL using the following ...
1
vote
3answers
4k views
Duplicate form submission in Spring
What's the best way of avoiding duplicate form submission in Spring. Does this framework provide any special feature to handle this problem (for example as tokens in Struts)?
Thanks.
10
votes
5answers
5k views
How do I prevent people from doing XSS in Java?
What should I do to prevent XSS in Java? I'm using Spring MVC. Right now I am just putting all places where I output user text into <c:out /> tags, but this seems error prone as I might miss a ...
3
votes
2answers
1k views
Spring MVC custom scope bean
I would like to create my own custom scope bean which will use HTTP session (kind of Flash scope).
According to Spring Manual I need to implement org.springframework.beans.factory.config.Scope ...
13
votes
3answers
11k views
Finding your application's URL with only a ServletContext
I'm writing a Java web app using Spring MVC. I have a background process that goes through the database and finds notifications that must be e-mailed to my users. These e-mail messages need to include ...
5
votes
4answers
6k views
better way for dynamic forms with Spring?
What I wonder is if there's a easier/better way to handle dynamic forms (adding form items to the dom via js) when using SpringMVC and Spring forms?
Imaging having an Invoice object that have many ...
4
votes
1answer
1k views
JSR-303 Type Checking Before Binding
model....
@Digits(integer=5, fraction=0, message="The value must be numeric and less than five digits")
private int value;
beans file....
<mvc:annotation-driven />
controller....
...
3
votes
3answers
2k views
Spring 3 MVC @Controller with AOP interceptors?
Anyone knows why apparently it is not possible to use AOP with annotated MVC Controllers? (see Post).
I have a @Controller that stops working as soon as I add a pointcut to it.
The problem is not that ...
4
votes
2answers
2k views
Get Root/Base Url In Spring MVC
What is the best way to get the root/base url of a web application in Spring MVC?
Base Url = http://www.example.com or http://www.example.com/VirtualDirectory
2
votes
1answer
538 views
Spring 3 MVC: one-to-many within a dynamic form (add/remove when create/update)
I'm looking for a solution to manage a one-to-many relation within an HTML form using jQuery. I'm developing with Spring / Spring 3 MVC / Hibernate. I found many tracks on the web, but not any working ...
2
votes
3answers
1k views
How to pass model attributes from one Spring MVC controller to another controller?
I am redirecting from a controller to another controller. But I also need to pass model attributes to the second controller.
I don't want to put the model in session.
Please help.
2
votes
3answers
4k views
Spring 2.5.x MVC portlet with annotation & AJAX with jQuery+JSON Error: Content Type cant be set to json
When i try to use spring 2.5.x DispatcherPortlet with liferay to use Ajax, i am getting this error. I have configured it using annotations.
At class level i used following annotations,
Code for ...
2
votes
2answers
2k views
Use a ContextLoaderListener in accordance with DispatchServlet
I want to use both ContextLoaderListener (so that I can pass Spring Beans to my servlet) as well as DispatchServlet (Spring MVC). However, currently I have to pass init param to these both class ...
2
votes
2answers
349 views
How to reuse fieldlength in form, validation and ddl?
I'm working on an Spring application with lots of input forms. I'd like to reuse the field length in the UI-form, validation and JPA annotations. Is there an elegant way to solve this. My solution at ...
0
votes
1answer
361 views
Cannot proceed with Spring Roo: Advaned MVC Problems
I was scheduled to begin work on a new project and decided to make my life easier by adopting a new technology that I had no experience with: Spring!
Specifically Spring Roo, and therein lies my ...
6
votes
2answers
3k views
@Autowire strange problem
I have a strange behaviour when autowiring
I have a similar code like this one, and it works
@Controller
public class Class1 {
@Autowired
private Class2 object2;
...
}
@Service
...
5
votes
3answers
8k views
Spring's Json not being resolved with appropriate response
I've tried to have a controller in Spring return a JSON response to no avail using the Jackson classes as recommended with 3.0. I've got the jackson jar files(jackson-core-asl-1.5.5.jar & ...
4
votes
3answers
3k views
Spring portlet mvc: @Valid does not seem to work
I created a bean class and use it in my controller but it does not seem to work.
Namely even though I enter an invalid age, result.hasErrors is still false.
Bean class:
public class User{
...
2
votes
4answers
493 views
Is it possible to invalidate a spring security session?
I'm using Tomcat 6.0.32, Spring Security 3.0.5
In my web app some users have the ability to change other users privileges. When this happens I would like to invalidate any session for the user whose ...
2
votes
4answers
442 views
single signon + spring
Can anybody tell me how to implement single signon in my spring application.(Tomcat or Jboss server)
share me any documentation or link to bring this feature in my spring app.
I am using spring ...
2
votes
1answer
781 views
Request size limitation when using MultipartHttpServletRequest of Spring 3.0
I'd like to know what is the size limitation if I upload list of files in one client's form submition using HTTP multipart content type.
On the server side I am using Spring's ...
2
votes
3answers
1k views
Servlet Session timeout
I'm writing my SPring MVC web application.
I have set my session time out to be 10080 minutes equal to 1 week.
Now I would like to keep user logged in every time he open browser:
...