spring-mvc

Spring MVC 3.0 and Apache Tiles 2

Howdy, I'm currently in a Spring MVC 3 based project, and found out about Apache Tiles 2 the other day, I think Tiles 2 is a heck of framework that I could make good use in my project, but before I commit to it, I would like to know if it integrates well with Spring MVC 3, given that Tiles' inherent relationship with Struts. Spring als...

HTTP 404 my Spring Controller is not handle on my specific URL

Hi all, I create a Controller bean to map a dedicated URI. My web.xml file : <!-- Spring MVC Servlet (that will route HTTP requests to BlazeDS) --> <servlet> <servlet-name>Spring MVC Dispatcher Servlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>cont...

Multiple <script> tags and <!-- //required for FF3 and Opera -->

I've used Spring Roo to generate a basic web project. The UI is JSP based, with a Tiles layout. Looking at the default layout code, I noticed that tags were defined as follows: <script src="${dojo_url}" type="text/javascript" ><!-- //required for FF3 and Opera --></script> <script src="${spring_url}" type="text/javascript"><!-- //req...

Could annotation based and xml based configuration be used together in spring 2.5?

Hi I've been working on a project where controllers have been written extending Controller classes. Could I configure and use the POJO based Controllers as well (using @Controller) in the same application? Many thanks ...

how to profile a page request for a spring mvc app

what options do I have to profile a page request in a spring mvc app? I want to get a breakdown of how long the page request takes, along with the various stages like how long it takes to render the freemarker template, hibernate db calls, etc. ...

Validate format parameter via config in Spring MVC.

Here is my situation: I have my mvc-config.xml file for my web service set up to have JSON as the default media type. I also have favorParameter for the ContentNegotiatingViewResolver as true. Additionally, I have useNotAcceptableStatusCode as true so that not accepted formats will return a 406. My question is: Is there a way, in the c...

Spring MVC bind comma separated list to multi-select

tl;dr: I have a custom object that isn't a Collection. How can I get Spring to bind it to a multiple select? I have an object Field that contains a field called value, which is a String, with getters and setters. Sometimes the value field contains a single value and those will be displayed in a text box. Other times the value field wi...

Spring 3 MVC: Issue binding to list form fields on submit.

Let me introduce my issue by providing some of the code in question. First my form object: public class OrgChartForm { List<OrgChartFormElement> orgChartFormElements; public OrgChartForm() { orgChartFormElements = new ArrayList<OrgChartFormElement>(); } private OrgChartFormElement createOrgChartFormElementFr...

How to define message converter based on url extension in Spring MVC?

How can I influence the process of choosing a message converter in AnnotationMethodHandlerAdapter for resulting POJO by url extension? I would like to have more representations of one data object, while data representation should be chosen by the requested url extension e.g. /users/2.xml or /users/2.json. Current configuration of messag...

spring mvc3.0 internationalization

Hi... i am using spring mvc3.0.... In my project i need to display JSON data for which i am using jquery.... In short m using tag so as to use the @ResponseBody annotation in order to use the JSON data... But this tag is not supporting internationalization..... Is this is a bug????? ...

Spring MVC 3.0: How do I bind to a persistent object

I'm working with Spring MVC and I'd like it to bind a a persistent object from the database, but I cannot figure out how I can set my code to make a call to the DB before binding. For example, I'm trying to update a "BenefitType" object to the database, however, I want it to get the object fromthe database, not create a new one so I do n...

Spring MVC form hidden field appears null only in IE

In a simple sample, I have two models DailyTimesheet and MonthyTimesheet: class DailyTimesheet { // other properties MonthlyTimesheet timesheet; } class MonthlyTimesheet {} In the form, I have the code as: <form:form action="/update/timesheet" method="POST" modelAttribute="dailyTimesheet"> <form:hidden i...

merging spring with Nhibernate

What is spring? Why is it being usd with Hibernate? Whats its utility? ...

How to publish rss using spring?

I am using spring mvc to build a website,and try to publish rss using spring framework.I follow this guide link text,but failed.Did I miss anything? I am using spring3.0.3.After I wrote controller, rssview and config file.There is no error message when starting my web app,but i can't access rss feed by web browser. ...

Inrecept requests to specific beans

I'm developing webapp using spring 3 mvc and using annotation-based controllers. I want to define an interceptor, that will intercept requests to specific beans not for all. How I can do that? Now i use following config, but it intercept requests to all beans <bean id="annotationMapper" class="org.springframework.web.servlet.mvc.annot...

testing a spring web app in eclipse without deploying it

Hi, i am working on my first spring app and using tomcat to deploy and run it but the issue is everytime i make a change to it and build it again, it re-builds it into the tomcat server. is their a way to test the compile and build of my spring app inside my eclipse IDE enviornment instead of always deploying it int the tomcat server? ...

fileNotfound exception of my properties file

Hi, i am trying to use a custom .properties file i created to host some properties about a SQL database but the issue is that my spring app cant find it. i get the following error Caused by: java.io.FileNotFoundException: Could not open ServletContext resource [/jdbc.properties] i have tried to put this file in the root of my project...

Setting parent form attributes from an iFrame

Hello All, I have a jsp which has an iFrame in it. The page displayed in the iFrame depends on the selection made by the user in a drop down list on the parent page. Once the page inside the iFrame is displayed, the user can then fill in the details and hit on submit button. Problem is I'm not able to access the value entered by the use...

redirecting back to original page after authentication failure with spring security

I'm using Spring 3.0 along with Spring Security. I've always used the following configuration: <form-login login-page="/login" authentication-failure-url="/login?error=credentials" default-target-url="/account" login-processing-url="/security_check"/> So when the user doesn't login correctly, they go to /login. Now I have a logi...

Pointers on how to to get a test jar to run a separate war for testing (perhaps with cargo?)

Hello, Let me explain some of my constraints. We have a war that has a CXF Soap service and a Spring MVC REST Service. Both the CXF and Spring MVC implementations are in a separate jar and are brought in as dependencies. The REST service has its unit tests in its project. I was wondering if there was any way to, while doing something ...