How did you get email-check work in your crud library? I'm trying to add a

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.


18307164.png
18307167.png

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!