Is it possible to use the same custom message for multiple annotations in Spring 4+ framework.
In my case, I would like to show the same message for @NotNull and @NotEmpty annotations.
@NotEmpty(message = "First name cannot be empty.")
@NotNull(message = "First name cannot be empty.")