I have a @Money constraint that indicates the annotated Double property is, well, money. I wrote a ConstraintValidator that checks if a @Money property has a valid value, which depends on a Currency instance. For example, USD has both dollar and cent values whereas Japanese Yen doesn't, so while 19.99 is a valid value for USD, it isn't for JPY. The Currency value is stored in another property of the same bean.
The problem is looking up the Currency property of a given bean within the ConstraintValidator. I thought about making it class-level validation, but it would be quite cumbersome and redundant to write at the class level which fields are money, and more importantly, you can only generate one error message, even if there is more than one money property that is invalid.
Any suggestions, even Hibernate Validator specific ones are welcome.
Thanks!