I actually resolved this by switching from LazyList to AutoPopulatingList and adding JSR 303 validation annotations to my form-backing object Lists.
@NotEmpty
@Valid
List<Component>...
Type: Posts; User: gheidorn; Keyword(s):
I actually resolved this by switching from LazyList to AutoPopulatingList and adding JSR 303 validation annotations to my form-backing object Lists.
@NotEmpty
@Valid
List<Component>...
Using Spring 3.0:
I have a form backing object (FBO) that contains a LazyList of objects that consist of a name and rating description. I want to validate the submission of the form to make sure...
I'm using version 2.5.X and am trying not to do anything too fancy. However, as I build more services that interact with the database, I am finding myself building lots of these little DAO helpers...
I have a form with the following layout:
text field - component1
text field - desc1
text field - desc2
text field - desc3
text field - component2
text field - desc1
text field - desc2
I am experimenting with both Programmatic and Declarative Transaction Management and whilst working on the former, I decided to break out my anonymous inner class that was implementing...