I wanted to do a tutorial on JavaFX. The idea, as always with me, was to show how to build a real application in JavaFX. I wanted it to be a real solution not a series of examples of what you can do. I wanted to build something that could be used, something that served a purpose.
So, I searched around and found a specification document. This specification describes how to implement what is known as a Trivial File Transfer Protocol (TFTP). This is described as a simplified version of the File Transfer Protocol specification, used to move files between machines, so is ideal to use as an example. There are two parts to this, a client and a server so, for our JavaFX tutorial we will build a TFTP client. There are also TFTP servers freely available so we have a server that we can test our client against.
How the course is structured:
The course is split into 5 sections from setting up through to packaging it all up. Along the way we look at designing and building the front end, pulling together the logic for the backend and linking the parts together.
Delivery of course content is primarily through the use of video sessions demonstrating a specific point. As you go through the sections you can run the application and see how it develops and builds on the previous sections.
At the end of the course you will be able to take the techniques covered in the course and apply these to your own development projects