How did you get email-check work in your crud library?
I’m trying to add an entity in my database.
@NotNull
@Email
private String email;
But I got an error.
Yes. The table of the database is newly created.
How did you get email-check work in your crud library?
I’m trying to add an entity in my database.
@NotNull
@Email
private String email;
But I got an error.
Yes. The table of the database is newly created.
By adding Java Bean Validation to the classpath and enabling it in the crud component (see the basic usage section at https://vaadin.com/directory/component/crud-ui-add-on).
Thank you. Now it’s working!