Archive for the ‘Quick Tutorials’ Category

Easy JDBC using Spring

29 August 2009

Spring has a well-written module for JDBC. We’ll use it to produce clean code for our application in 10 minutes.

Click here to read more…

Free SCWCD Mock Exam for EL

24 August 2009

This practice exam focuses on EL. For those using Head First Servlets and JSP, 2nd Edition it provides a lot of practice for the last part of chapter 8.

Click here to read more…

Free SCWCD Mock Exam for JSPs

22 August 2009

This practice exam focuses on Java Server Pages.

Java Server Pages is the technology that changed the world of Web Applications. Developed on the robustness of Servlets, JSPs are the key component of the modern Web frameworks and the basis of promising new technologies like JSF.

This free practice material consists of 71 originally created questions. For those using Head First Servlets and JSP, 2nd Edition it’s a perfect companion for chapters 7-8.

Click here to read more…

Free SCWCD Mock Exam for Servlets

12 March 2009

This practice exam focuses on Servlets. For those using Head First Servlets and JSP, 2nd Edition it’s a perfect companion for chapters 4-6.

Click here to read more…

JavaFX Script for Java developers, Part 2

6 February 2009

Comfortable arrays

Arrays in JavaFX are easy-to-use and act more like sequences. Here’s one:

var letters = ['A', 'B', 'D'];

Let’s print it,

println(letters);

Displaying an array in JavaFX

get its size,

println(sizeof letters);

Getting the text of an array in JavaFX

reverse it,

println(reverse letters);

insert an element at the end,

insert 'E' into letters;
println(letters);

insert more elements at the end,

insert ['F', 'G'] into letters;
println(letters);

and insert something at the middle.

insert 'C' after letters[1];
println(letters);

Click here to read more…