Let's say I have these classes:
public class Shop {
@Valid
private Fruit fruit;
}
public abstract class Fruit {
@NotNull
private String name;
}
public class Apple extends Fruit {
@NotNull
private String color;
}
public class Cucumber extends Fruit {
@Min(0)
private int lengthInCm;
}
when calling validate() on instance of Shop.class I would expect that Cucumber will be evaluated against constraints in Cucumber.class and apples against constraints in Apple.class (of course plus constraints in abstract class for both apples and cucumbers)
How can I achieve this behavior???