fixed String size constraint example (SPR-6517)

This commit is contained in:
Juergen Hoeller 2009-12-04 17:29:06 +00:00
parent 0d413c7e36
commit 12892eef98
1 changed files with 1 additions and 1 deletions

View File

@ -1290,7 +1290,7 @@ public class PersonForm {
public class PersonForm { public class PersonForm {
@NotNull @NotNull
@Max(64) @Size(max=64)
private String name; private String name;
@Min(0) @Min(0)