Based on the Model-View-Controller (MVC) pattern, Spring MVC helps you build web-based applications that are flexible and decoupled from the underlying view technologies.
83
votes
16answers
61k 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>
...
68
votes
4answers
32k views
What's the difference between @Component, @Repository & @Service annotations in Spring?
Can @Component, @Repository & @Service annotations be used interchangeably in Spring or do they provide any particular functionality besides acting as a notation device?
In other words, if I have ...
47
votes
14answers
50k views
Struts or Spring MVC or Struts & Spring? [closed]
I need some information to understand design decision:
Is Struts a better choice than Spring MVC? I hear about Strus-Spring-Hibernae combo - Is struts used at MVC layer because its a matured ...
43
votes
3answers
23k views
What's the difference between <mvc:annotation-driven /> and <context:annotation-config /> in servlet?
I am migrating from Spring 2.5 to Spring 3.
They have introduced <mvc:annotation-driven /> which does some black magic. This is expected to be declared in servlet configuration file only.
In ...
41
votes
3answers
25k 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(){
...
39
votes
6answers
29k views
Is there a maven 2 archetype for spring 3 MVC applications?
I'm experimenting with the spring 3 MVC framework. Since i use maven 2 to manage my project, i'm searching for a archetype to create a spring 3 MVC application.
38
votes
5answers
13k views
trigger 404 in spring-mvc controller?
How do I get a spring 3.0 controller to trigger a 404?
I have a controller with @RequestMapping(value = "/**", method = RequestMethod.GET) and for some urls accessing the controller I want the ...
35
votes
2answers
51k 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, ...
33
votes
1answer
29k views
How to store session in Spring MVC
What's the best way of storing session related data of a user (like, for example a log of recent actions a user has done) in a Spring MVC (2.5) web application ?
Using the classic ...
32
votes
2answers
37k views
32
votes
13answers
16k views
Alternatives to JSP for Spring MVC view layer
I'm looking to create a new app from scratch and will probably use Spring MVC and possibly Spring Web Flow. The projects created by Spring Roo use Spring MVC and optionally Web Flow. What are some ...
31
votes
7answers
77k 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 ...
31
votes
9answers
22k 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 ...
30
votes
12answers
38k 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 ...
30
votes
2answers
6k views
How do I use Comet with Spring MVC?
I'd like to add some Comet/server push capabilities to a simple web application. I'm having trouble finding up to date information on how to do this.
Can anyone point me to some examples, tutorials, ...
29
votes
6answers
11k views
Spring MVC @PathVariable getting truncated
I have a controller that provides RESTful access to information:
@RequestMapping(method = RequestMethod.GET, value = Routes.BLAH_GET + "/{blahName}")
public ModelAndView getBlah(@PathVariable String ...
29
votes
2answers
21k views
How does autowiring work in spring?
I'm a little confused as to how the IOC works in spring.
Say I have a service class called UserServiceImpl that implements UserService interface.
How would this be auto-wired?
And in my Controllers ...
29
votes
7answers
33k views
How to unit test a Spring MVC controller using @PathVariable?
I have a simple annotated controller similar to this one:
@Controller
public class MyController {
@RequestMapping("/{id}.html")
public String doSomething(@PathVariable String id, Model model) {
...
29
votes
7answers
42k views
Getting started with Spring 3 Web MVC - Setting everything up
I'm trying to get started with JAVA/Eclipse/Spring MVC but can't seem to find a "dummies" or "step-by-step" guide for setting everything up and creating the simplest proof-of-concept application.
I ...
29
votes
2answers
8k views
RESTful Authentication via Spring
Problem:
We have a Spring MVC-based RESTful API which contains sensitive information. The API should be secured, however sending the user's credentials (user/pass combo) with each request is not ...
28
votes
12answers
25k views
How do I prevent Spring 3.0 MVC @ModelAttribute variables from appearing in URL?
Using Spring MVC 3.0.0.RELEASE, I have the following Controller:
@Controller
@RequestMapping("/addIntake.htm")
public class AddIntakeController{
private final Collection<String> users;
...
28
votes
8answers
76k views
log4j:WARN No appenders could be found for logger in web.xml
I already put the log4jConfigLocation in web.xml, but still, i get warning
log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader).
log4j:WARN Please ...
25
votes
5answers
41k views
How to POST JSON data with Curl from Terminal/Commandline to Test Spring REST?
I use Ubuntu and Curl installed it. I want to test my Spring REST application with Curl. I wrote my POST code at Java side however I want to test it with Curl. I will post a JSON data. An example data ...
25
votes
6answers
8k views
Should I build a REST backend for GWT application
I am planning a new application and have been experimenting with GWT as a possible frontend. The design question I am facing is this.
Should I use
Option A: GWT-RPC and build the app quickly
...
24
votes
3answers
14k views
Spring MVC - Binding a Date Field
For request parameters representing string, number, and boolean values, the Spring MVC container can bind them to typed properties out of the box.
How do you have the Spring MVC container bind a ...
23
votes
7answers
17k 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")
...
22
votes
5answers
27k views
How to implement pagination in Spring MVC 3
Is there any out-of-the-box, easy to implement, standard pagination component/tag-lib or code-sample available for pagination in Spring MVC?
Cheers
22
votes
3answers
21k views
Spring MVC 3 Validation - Unable to find a default provider
I get an error when trying to set up Spring MVC validation.
javax.validation.ValidationException: Unable to find a default provider
I read in the documents that the default provider they use is the ...
22
votes
10answers
12k views
Ant, Tomcat Build Error: java.lang.NoClassDefFoundError: org/apache/tomcat/util/buf/B2CConverter
Tomcat Version: 7.0.20
I am attempting to work my way through the following Spring MVC tutorial:
http://static.springsource.org/docs/Spring-MVC-step-by-step/part1.html
In this tutorial, an ant build ...
22
votes
2answers
7k views
No adapter for handler exception
I'm developing a web application using spring mvc framework. I want to to both annotation and beanName based url mappings.
I've the following configurations in my context file
...
22
votes
4answers
19k views
Binding a list in @RequestParam
I'm sending some parameters from a form in this way:
myparam[0] : 'myValue1'
myparam[1] : 'myValue2'
myparam[2] : 'myValue3'
otherParam : 'otherValue'
anotherParam : 'anotherValue'
...
22
votes
7answers
7k views
Unit tests vs integration tests with Spring
I'm working on a Spring MVC project, and I have unit tests for all of the various components in the source tree.
For example, if I have a controller HomeController, which needs to have a LoginService ...
22
votes
4answers
2k views
How to prevent parameter binding from interpreting commas in Spring 3.0.5?
Consider the following controller method:
@RequestMapping(value = "/test", method = RequestMethod.GET)
public void test(@RequestParam(value = "fq", required = false) String[] filterQuery) {
...
21
votes
1answer
11k views
Which is better, return “ModelAndView” or “String” on spring3 controller
The way of return ModelAndView
@RequestMapping(value = "/list", method = RequestMethod.GET)
public ModelAndView list(
@UserAuth UserAuth user,
ModelAndView mav) {
if ...
20
votes
5answers
51k views
How do you create a Spring MVC project in Eclipse?
I am trying to follow basic tutorial for Spring MVC but get lost at creating a new project in Eclipse. It seems that most tutorials assume you know how to create a Spring Project in Eclipse. Any ...
20
votes
3answers
12k views
Get UserDetails object from Security Context in Spring MVC controller
I'm using Spring Security 3 and Spring MVC 3.05.
I would like to print username of currently logged in user,how can I fetch UserDetails in my Controller?
@RequestMapping(value="/index.html", ...
20
votes
5answers
2k views
Resource for learning Spring MVC
I am looking for an online resource to learn the Spring MVC stack.
Can someone point me in the right direction?
20
votes
3answers
13k views
Spring MVC: How to return image in @ResponseBody?
I'm getting image data (as byte[]) from DB. How to return this image in @ResponseBody ?
EDIT
I did it without @ResponseBody using HttpServletResponse as method parameter:
@RequestMapping("/photo1")
...
19
votes
4answers
38k 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}"}, ...
19
votes
8answers
40k 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 ...
19
votes
3answers
19k 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 ...
18
votes
7answers
20k views
Strange Jackson exception being thrown when serializing Hibernate object
Jackson is throwing a weird exception that I don't know how to fix. I'm using Spring, Hibernate and Jackson.
I have already considered that lazy-loading is causing the problem, but I have taken ...
18
votes
5answers
17k views
Spring login form example
I tried searching in Google, but I could not find any good examples where a username and password are checked with a database for authentication purposes.
In further simple words, how can I create a ...
18
votes
3answers
8k views
Can Spring Security use @PreAuthorize on Spring controllers methods?
Can Spring Security use @PreAuthorize on Spring controllers methods?
18
votes
5answers
12k 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 ...
18
votes
2answers
23k views
How is the Spring MVC spring:bind tag working and what are the meanings of status.expression and status.value?
Let's discuss on the following example:
<spring:bind path="user.userName">
<input type="text" name="${status.expression}" value="${status.value}"/>
<span ...
18
votes
2answers
7k views
Spring MVC Form tags: Is there a standard way to add “No selection” item?
There is a select dropdown and I want to add "No selection" item to the list wich should give me 'null' when submitted.
I'm using SimpleFormController derived controller.
protected Map ...
18
votes
8answers
2k views
Unwanted comma-separated arguments to Spring controller method
I'm seeing a strange problem with a Spring MVC controller. This method is intended to set the password. It takes two form parameters "password" and "confirmPassword". The first time the form is ...
17
votes
6answers
21k views
How do you set cache headers in Spring MVC?
In an annotation-based Spring MVC controller, what is the preferred way to set cache headers for a specific path?
17
votes
4answers
9k views
Spring 3 RequestMapping: Get path value
Is there a way to get the complete path value after the requestMapping @PathVariable values have been parsed?
That is:
/{id}/{restOfTheUrl} should be able to parse /1/dir1/dir2/file.html id=1 and ...