Hi Rafael,
Hendrik contributed a few JavaFX examples here:
https://github.com/hibernate/hibernate-demos/tree/master/hibernate-valida...
.
I think they will probably help you getting it working.
--
Guillaume
On Fri, Nov 17, 2017 at 2:05 PM, Rafael A P Nascimento <rfx.go.on(a)gmail.com>
wrote:
Hi all!
How do I integrate Bean Validation with JavaFX?
I would like to make a *bidirectional bind* between the entity field and
the javaFx controllers. In this scenario how could I validate fields using
Bean Validation?
Ex:
public class Category{
@NotNull(message = "Name can't be null)
@Size(max = 255, min=3, message = "Size name must be between 255 and
3")
private StringProperty name = new SimpleStringProperty();
//... getters & setters
}
//some fx Controller...
public class CategoryController{
@FXML
private TextField textFiledCategoryName;
private Category category;
@FXML
public void initialize() {
category = new Category();
textFiledCategoryName.textProperty().bindBidirectional(category.nameProperty());
}
//other code...
}
thanks!
--
*Rafael A P Nascimento *
*finalexception.blogspot.com <
http://finalexception.blogspot.com.br>*
_______________________________________________
beanvalidation-dev mailing list
beanvalidation-dev(a)lists.jboss.org
https://lists.jboss.org/mailman/listinfo/beanvalidation-dev