Hi Kaz Osman,
in order to have the @Size max value applied you need to annotate the address field with @Valid
@Entity public class Publisher{ ... @NotNull @Valid private Address address; ... }