JavaFX Tutorial – Basics
First some pre-requisites:
- JavaFX Runtime Environment
- Java Runtime Environment
- JavaFX SDK
- JavaFX Scene Builder
- JavaFX IDE – I had chosen NetBeans 7 as it already has support for JavaFX.
This can all be downloaded on the Oracle Website. You may google it.
Requirement: Create a simple application that accepts (you guess it) person details (simple registration), a custom web browser and some analytics.
Technology: JavaFX and JPA
Step 1: Create the Database and Tables
Simple Database and Table, download the SQL file: here
Step 2: Create the User Interface and specify the controller
Using the JavaFX Scene Builder, create the user interface.
Step 3: Development
Code the App!
NetBeans has its support for JPA – so I used it to interact with the database.
Download the source: here
Its basically a very simple application, but I think this sample will give you a brief introduction or a head start on how to actually develop an application using the platform.
Not a bad alternative if you want to create Desktop Applications, which of course, .net offers much better solution. Though the main take away here is that JavaFX redefines Java Desktop Application Development – flexible enough to support the best of both worlds (Desktop and Web) and if thats not enough, it also supports mobile phones.
Reference: JavaFX Tutorial – Basics from our JCG partner Alvin Reyes at the Alvin “Jay” Reyes Blog blog.
Thanks a lot
Hi every one you can get started with javafx using this link.,
http://www.javafxapps.in/tutorial/Getting-started-with-your-first-JavaFX-Application.html
visit http://www.javafxapps.in fro javafx tutorials
In the ApplicationController, I think you have to add em.getTransaction().rollback(); in the catch to close the transaction if something went wrong.
ie :
public void initialize(URL arg0, ResourceBundle arg1) {
// Initialization Process.
emf = Persistence.createEntityManagerFactory(“JavaFXApplication1PU2”);
em = emf.createEntityManager();
// Get all data in person table.
try {
em.getTransaction().begin();
//Select all the record from student table
Query query = em.createQuery(“SELECT pt FROM Person pt”);
List lst = query.getResultList();
Iterator it = lst.iterator();
while (it.hasNext()) {
Person person = (Person) it.next();
System.out.print(“Name:” + person.getPersonName());
}
em.getTransaction().commit();
} catch (Exception e) {
System.out.println(e.getMessage());
em.getTransaction().rollback();
}