[hibernate-issues] [Hibernate-JIRA] Commented: (HV-466) Avoid repeated validation of constraints in certain type hierarchies

Hardy Ferentschik (JIRA) noreply at atlassian.com
Tue Apr 19 17:03:59 EDT 2011


    [ http://opensource.atlassian.com/projects/hibernate/browse/HV-466?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=42098#action_42098 ] 

Hardy Ferentschik commented on HV-466:
--------------------------------------

there is actually one easy way to address this. you just keep track in _ValidatorImpl.validateConstraintsForDefaultGroup_ which interfaces you already processed and ignore re-appearing interfaces. We could add this for 4.2 just to make the algorithm correct and see whether we can come up w/ something better post 4.2.

> Avoid repeated validation of constraints in certain type hierarchies
> --------------------------------------------------------------------
>
>                 Key: HV-466
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HV-466
>             Project: Hibernate Validator
>          Issue Type: Bug
>          Components: engine
>            Reporter: Gunnar Morling
>            Priority: Minor
>             Fix For: 4.x
>
>
> Let there be the following type hierarchy where the same interface is implemented by two types in an inheritance hierarchy:
> {code:java}
> public interface A {
> 		
> 	@NotNull
> 	String getA();
> }
> 	
> public class B implements A {
> 	public String getA() {
> 		return null;
> 	}
> }
> public class C extends B implements A {
> 		
> }
> {code}
> When validating an instance of {{C}} the {{@NotNull}} constraint on {{A#getA()}} is evaluated twice when traversing the type hierarchy of {{C}} in {{ValidatorImpl}}.
> This seems to be against the BV spec. which says in chapter 3.5: 
> {quote}
> Note that this [algorithm] implies that a given validation constraint will not be processed more than once per validation.
> {quote}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list