spring-mvc

Catch Spring MVC Maxupload Size Error

Hi, I know its hard to check the file size at the client side(browser) with just pure javascript only. Now, my question is, Is there a way at the server side to catch an exception such as this? org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size of 2000000 bytes What happens is that, it does not rea...

Choosing a Framework for Developing Portlets in WebSphere Portal 6 / 7

I'm part of a team which is evaluating frameworks for developing portlets for WebSphere Portal 6.1.5 (and 7, once we get it). A rough outline of our requirements for the framework are (as many of the following as possible): Support development of JSR-286 compliant portlet applications Should support custom portlet modes AJAX support ...

Intercept the view/response in Spring MVC 3

I am new to Spring MVC 3 and I understand the basic concepts. I am able to do simple things like create controllers and services and views. However, I haven't made a foray into more advanced territory. Hence, I apologize if this question seems silly (or impossible). I am wondering if there is a way to intercept the view and/or response ...

How to send Jsp as response to ajax call

i want to send a jsp page which consist of some divs and table as part of ajax response from spring frame work, is there any way to send jsp as an response of ajax call ...

Custom json in Spring

Hello, I have configured in an Spring 3 application a ContentNegotiatingViewResolver so when I invoke a controller with a URL which looks like **.json it returns a json object using jackson library. If I call this method: @RequestMapping("/myURL.json") public List<MyClass> myMethod(){ List<MyClass> mylist = myService.getList(); ...

Downsides of using Stripes+Spring vs Spring MVC

I am coming from Struts 1 world. Now I am starting a new project and we are using Spring. I could use Spring MVC, but seeing how simple it is to use Stripes (no xml is a big plus) I am tempted to use that with our brand spanking new Spring web application. I have no experience in either Stripes or Spring MVC (apart from basic CRUD appli...

Passing Messages back to Client using Spring MVC

Greetings all... I have a simple, yet annoying question regarding Spring Web MVC. I come from about 7 years of Struts development and have gotten used to all of the ins-and-outs that come with Struts, however, I've decided to take the plunge into using Spring MVC and so far I love what I see. One thing that I cannot seem to figure out...

Problem Deserializing with Jackson using JAXB annotations in Spring MVC

I'm having trouble getting Jackson to correctly deserialize json into an object when calling a service (specifically we're using Jackson's ability to use JAXB annotations since we also want the service to use XML). I'm using Spring MVC and I'm using the RestTemplate class to make calls to the service. Here is where I setup the MappingJ...

Spring MVC without HTTP requests

Hi, I need to create a system oriented around Methods where providers can register for the Methods they handle and consumers can do two things (for now) - either get Metadata for a method or execute it. I'm considering creating a REST style architecture where methods are resources with unique URIs and an interface consisting of two meth...

Enable Jackson to not output the class name when serializing (using Spring MVC).

Is there a way to force Jackson not to put the class name in the Json output? I asked a question that led to this question, but I'm asking what I hope is a more focused question. I'm using Spring MVC while doing this, but I'm not sure how much that matters. So, instead of {"NamedSystem":{"name":"Bob Dole","id":"0198b96c-fe18-4aa6-9e6...

Handling Exception like validation errors in Spring MVC

I have configured the SimpleMappingExceptionResolver in my web application, which is handling all the unexpected exceptions in the application and directing the user a to simple error page for recovery. But what would be a best practice of handling an expected exception (more specifically: exception caused by hibernate optimistic concur...

Please recommend a view technology to be used in Spring MVC 3 applications.

I'm looking for what view technology would be considered the best approach for Spring MVC 3.0 which is flexible, maintainable and allows multiple rendering technologies such as HTML, PDF etc... We're looking to develop our next web application using Spring MVC 3.0 and have settled on Hibernate for persistence but are still trying to dec...

help with swfupload and java

...

Why does @RequestParameter String someValue in Spring 3 return 2x values ?

Let's say I have this method in my controller: @RequestMapping(value="/home", method=RequestMethod.GET) public void captcha(@RequestParam String someValue, HttpServletResponse response) { System.out.println(someValue); } Why does the result of this request: http://something/home?someValue=testvalue123 return this? testvalue12...

Spring excluding pages from urlrewrite rule set on root

Hi guys. Here is the simple explanation of the problem: I have a controller RedirectController so that I want to handle everything like http://mydomain/** However, still I want need to redirect http://mydomain/ to index controller (or index.jspx whatever) and most probably I need to exclude /help /about URLs in the future. The current...

Spring AOP Advice on Annotated Controllers

I am trying to use AOP to do some processing after an annotated controller. Everything is running with no errors, but the advice is not being executed. Here is the controller code: @Controller public class HomeController { @RequestMapping("/home.fo") public String home(ModelMap model) { model = new ModelMap(); ...

Dynamic Menu population based on role and permission.....

Hi friends, Hope all doing well. In my java project i have to populate dynamic menu based on user role and permission. Could any one help me with code or tips to get the need.Thanks in advance.. I am using java, spring2.5,and mysql database.... Thanks... ...

Spring 3 Annotated Configuration Picks up @Configuration and @Component but not @Controller

So I'm trying to configure my web app without XML and go the all annotated route. I have a few classes annotated with @Configuration and @Component that are getting picked up automatically, but for some reason my @Controller annotations aren't being recognized and mapped to their corresponding @RequestMapping values. My web.xml file loo...

spring ajax json jquery

Hello... Can anybody suggest a tutorial where in I can integrate Ajax in my Spring MVC application using JSON library for data exchange????? I have to use jquery with ajax in my application ...

What is the preferred way to specify an HTTP "Location" Response Header in Spring MVC 3?

What is the preferred way to specify an HTTP "Location" Response Header in Spring MVC 3? As far as I can tell, Spring will only provide a "Location" in response to a redirect ("redirect:xyz" or RedirectView), however there are scenarios where a Location should be sent along with the entity body (ex, as a result of a "201 Created"). I'm...