Hi Rafael,
please ping me on Monday if the example do not help. Than we can have a look :)

Von meinem iPhone gesendet

Am 17.11.2017 um 14:40 schrieb Guillaume Smet <guillaume.smet@gmail.com>:

Hi Rafael,

Hendrik contributed a few JavaFX examples here: https://github.com/hibernate/hibernate-demos/tree/master/hibernate-validator/javafx-validation-example .

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@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 

_______________________________________________
beanvalidation-dev mailing list
beanvalidation-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/beanvalidation-dev

_______________________________________________
beanvalidation-dev mailing list
beanvalidation-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/beanvalidation-dev