It looks like the problem is using a Collection class directly as an MVC command object.
The solution was to create a new command object with a List property. Here's what that translated to in my...
Type: Posts; User: Aaron; Keyword(s):
It looks like the problem is using a Collection class directly as an MVC command object.
The solution was to create a new command object with a List property. Here's what that translated to in my...
I need to create a form that will allow simultaneous editing of several domain objects (Payment objects).
I have extended SimpleFormController, so that formBackingObject() returns a List populated...
Although it's not ideal, I have found a solution that allows me to conver my views to velocity one at a time. I'm using the ResourceBundleViewResolver, with completely specified views in...
I am beginning a process of converting to Velocity for a Spring MVC application. Currently, all views are JSP/JSTL. I thought I could simply chain a UrlBasedViewResolver (with JstlView set as its...
I've seen a lot of discussion about OpenSessionInView and the recommended strategy seems to be one that obtains a full object graph in the service layer. My problem: What if that object graph is...
Thanks for the quick reply. I looked through the Spring API Javadocs and found the CustomNumberEditor class.
Here's how I'm using it:
binder.registerCustomEditor(DomainObject.class,"id",new...
I'm getting a bind error on my SimpleFormController. It's occuring on my property "id" which is a Long in my domain object. I'm getting this error upon submitting the form:
Failed to convert...