Tagged Questions
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.
39
votes
12answers
23k 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>
...
24
votes
10answers
19k 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 ...
21
votes
13answers
31k views
Struts or Spring MVC or Struts & Spring?
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 ...
19
votes
3answers
795 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) {
...
19
votes
4answers
29k 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, ...
18
votes
2answers
2k 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, ...
18
votes
1answer
16k 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 ...
17
votes
8answers
11k 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 ...
15
votes
6answers
4k 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")
...
15
votes
6answers
26k 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 ...
15
votes
10answers
13k 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;
...
14
votes
9answers
5k 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 ...
14
votes
7answers
19k 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 ...
14
votes
2answers
5k 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 ...
14
votes
5answers
15k 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) {
...
14
votes
9answers
12k views
Spring roo Vs (Wicket and Spring)
Spring roo is new framework and I found it very interesting. I have been working on web application for last 3-4 years and Always found JSPs are hard to maintain across teams if everyone is not ...
14
votes
6answers
4k 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 ...
12
votes
4answers
867 views
Spring MVC Controller Design
We are migrating a struts application over to Spring MVC and utilizing the @Controller annotation to direct pages to various method calls.
I'm having trouble determining a good strategy for reuse ...
12
votes
1answer
2k 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
...
12
votes
7answers
9k 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.
12
votes
6answers
29k 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 ...
12
votes
5answers
10k views
Vaadin and Spring MVC Integration
I'm thinking about the possibility of using Spring MVC with Vaadin Framework. Are there any documented ways of making them play nicely together ? Also is it a good idea to use them together ? relating ...
12
votes
3answers
1k 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?
11
votes
4answers
5k 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 ...
11
votes
3answers
2k views
REST with Spring and Jackson full data binding
I'm using Spring MVC to handle JSON POST requests. Underneath the covers I'm using the MappingJacksonHttpMessageConverter built on the Jackson JSON processor and enabled when you use the ...
11
votes
4answers
2k 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 ...
11
votes
2answers
935 views
Spring+JSP url building best practices
I wonder if there are any good practices for addressing Spring controllers in JSP.
Suppose I have controller:
@Controller
class FooController {
// Don't bother about semantic of this query right ...
11
votes
3answers
9k 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(){
...
11
votes
4answers
32k 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 ...
11
votes
5answers
23k views
Spring-MVC Problem using @Controller on controller implementing an interface
I'm using spring 2.5 and annotations to configure my spring-mvc web context. Unfortunately, I am unable to get the following to work. I'm not sure if this is a bug (seems like it) or if there is a ...
10
votes
3answers
558 views
Spring 3 MVC and modal wizards
I'm looking at integrating a wizard in an existing Spring 3 MVC+JPA+Jquery+JSP application. I would prefer the wizard to be based on jquery modal overalays, however am open to considering other ...
10
votes
3answers
3k views
Reverse AJAX (Comet) and Spring MVC vs. Scala/LIFT?
There is a demo by IBM that shows how easy Reverse AJAX can be used with DWR 2. On the other hand, Scala/LIFT comes with built-in Reverse AJAX capability.
Question: Any experience if this works ...
10
votes
4answers
4k views
How to implement login page using Spring Security so that it works with Spring web flow?
I have a web application using Spring 2.5.6 and Spring Security 2.0.4. I have implemented a working login page, which authenticates the user against a web service. The authentication is done by ...
10
votes
2answers
3k views
Logging response body (HTML) from HttpServletResponse using Spring MVC HandlerInterceptorAdapter
I am trying to log (just to console write now for simplicity sake) the final rendered HTML that will be returned by the HttpServletResponse. (i.e. the body) To this end, I am using the ...
10
votes
1answer
21k views
How to use Ajax JQuery in Spring Web MVC
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" ...
10
votes
8answers
24k views
spring MVC sample web app
I'm looking for an example Spring MVC 2.5 web app that I can easily:
Setup as a project in Eclipse
Deploy to a local app server (using Ant/Maven)
There are a couple of example applications ...
9
votes
4answers
304 views
Should web service be separate from web site?
I am building a website and also want to build a REST web service for accessing a lot of the same functionality (using google app engine and spring mvc3), and I'm not sure of the best practices for ...
9
votes
2answers
7k 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}"}, ...
9
votes
1answer
2k views
Trying to protect resources with OAuth in Spring MVC
We already have REST web services written in Java on Spring MVC and I have been trying to protect them.
The OAuth server is implemented in another website which handles the logging in and creation of ...
9
votes
3answers
303 views
Moving from ASP.Net to Java for web development
My job has required me to change technologies quite radically. I am fine with this, I am excited to be learning new stuff; but I feel like I am very much a newbie in Java, especially the web ...
9
votes
6answers
2k 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
...
9
votes
2answers
4k 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 ...
9
votes
1answer
4k 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 ...
9
votes
4answers
11k 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
9
votes
3answers
19k views
Spring MVC Session Attribute Access
Is there any way under spring 3.0 to access the HttpSession without including it in the method signature? What I really want to do is be able to pass in values from an HttpSession that CAN BE null.
...
9
votes
5answers
4k 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 ...
9
votes
3answers
12k 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 ...
9
votes
3answers
18k views
Spring MVC validation with Annotations
I'm having quite some trouble since I migrated my controllers from classical inheritance to use the annotations like @Controller and @RequestMapping. The problem is that I don't know how to plug in ...
8
votes
1answer
2k 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", ...
8
votes
4answers
235 views
Best way for a Spring MVC web app to detect a brute force attack?
Are there any features specifically in Spring 3.0 MVC that would help implementing detection of a brute force attack on the authentication/login page of a web app?