Pular para o conteúdo principal

Postagens

Mostrando postagens de abril, 2013

Testing Afterburner.fx in a CRUD Application using JavaFX and FXML

It's been a few months without any new post on this blog :( I was preparing an application using Infinispan, NoSQL and JavaFX and unfortunately I lost my data in the disc... That would an epic post! In this post I'm going to show you a good old CRUD using FXML, JavaFX and the recent framework called Afterburner.fx , created by Adam Bien . About Afterburner.fx   Afterburner.fx is a minimalistic (2 classes) JavaFX MVP framework based on Convention over Configuration. It's not me saying this, it's on afterburner.fx web page. What I can say I like the idea of this simple framework. I can say that it will not solve all issues, but it brings DI and the conventions saves  from writing repetitive code. What is FXML? It's a declarative way to build JavaFX interfaces using XML. FXMLs declare elements using XML and you can relate it to a controller that will handle the view for you. The controller can have the view elements injected where you will be able to retrie...