-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Validator, @Validate [SPR-4774] #9451
Comments
Keith Donald commented The most basic feature we can provide is the ability to detect that a form object like an AccountForm should be validated. A simple way to detect would be the AccountForm has a validate method on it, or the AccountForm has constraints specified as annotations e.g. |
Krzysztof Koziol commented I think I would be very useful to define such annotations since the annotated controllers approach lacks of Validation Processing Flow. |
Hamster commented Hi, I've been reviewing validation options and I found springmodules annotation-based validation. Are you going to reuse those concepts and add to spring validation processing flow? I've been watching spring 3.0 presentation and there was something about declarative validation - in javadocs for 3.x I did not found anything for that. Cheers, |
Scott Frederick commented With the advancement of annotation-based configuration in Spring 3.0 and 3.1, it seems like one big facet of validation has been left behind. JSR-303 java bean validation support in Spring is great, but there are still times when it is better to write a custom validation class instead of using annotations on the model (even with custom annotations). I think this Jira issue has the answer to the last missing piece of the validation puzzle. Since Spring 3.0, most of the questions about how this could be implemented have been answered. All that is needed is the
As an alternative, the type to be validated could be on the When This solves two big problems with existing class-based validation: it simplifies registration of validators (which is currently pretty painful) using component scanning, and it allows much more flexibility in how validator classes are written (multiple I have this working and can submit a patch to the current 3.1 trunk, barring any comment on the design of the |
Chris Beams commented Pull request at #30 |
Chris Beams commented See comments in linked pull request where I've asked Scott for additional details making the case for this feature in modern-day Spring, in light of JSR-303 support, etc. |
Scott Frederick commented At Rossen's request, created two new issues to better capture the suggested improvements: https://jira.springsource.org/browse/SPR-9436 |
Rossen Stoyanchev commented I am marking this ticket as being superseded by #14072 and resolving it as duplicate. Everyone interested in the topic is encouraged to comment and place a watch on #14072 instead. This issue was opened before Bean Validation was supported or even available and any current discussion should start with that in mind. |
David Pedowitz opened SPR-4774 and commented
More brainstorming from training session in LA, 5/1/08 with Chris Beams, Tchavdar Ivanov (FIM) and myself.
@Validator
could be a class level annotation eligible for component scans, the methods of which could be annotated with@Validate
(or similar) which would enable method/request param specific validation within the request handling workflow@HandlerInterceptor
design (@HandlerInterceptor [SPR-4770] #9447)@Validator
could take a list of@Controller
classes for a more fine grained approach or@Controller
could take a list of@Validator
which would match the current register model (I think I like the later)@Validate
would define a method used to validate an@RequestParam
, it'd might be neat if it handled superset of@RequestParam
and@RequestMapping
arguments for a very fine grained approach, i.e.@Validate
("reward", method=RequestMethod.POST).@RequestParam
Hope you dig the ideas
Issue Links:
9 votes, 10 watchers
The text was updated successfully, but these errors were encountered: