Minibooks

The education never stops here at Java Code Geeks. Check out our recommended whitepapers and books (complimentary downloads):

JSF 2.0 Programming Cookbook

by Java Code Geeks on June 8th, 2017

JavaServer Faces (JSF) is a Java specification for building component-based user interfaces for web applications.[1] It was formalized as a standard through the Java Community Process and is part of the Java Platform, Enterprise Edition. JSF 2 uses F …

JPA Tutorial

by Java Code Geeks on June 8th, 2017

The Java Persistence API (JPA) is a Java programming language application programming interface specification that describes the management of relational data in applications using Java Platform, Standard Edition and Java Platform, Enterprise Edition …

JMeter Tutorial

by Java Code Geeks on June 8th, 2017

This tutorial discusses JMeter, a Java based load and performance testing tool with several applications and uses. These are the main points that we are going to cover: We are going to explain what is JMeter used for. How is JMeter implemented and wi …

Jetty Server Cookbook

by Java Code Geeks on May 29th, 2017

Jetty is a Java HTTP (Web) server and Java Servlet container. While Web Servers are usually associated with serving documents to people, Jetty is now often used for machine to machine communications, usually within larger software frameworks. Jetty i …

JDBC Tutorial

by Java Code Geeks on May 29th, 2017

This tutorial is about JDBC (Java Database Connectivity), an API provided by Oracle that allows programmers to handle different databases from Java applications: it allows developers to establish connections to databases, defines how a specific clien …

JAXB Tutorial

by Java Code Geeks on May 26th, 2017

Java offers several options for handling XML structures and files. One of the most common and used ones is JAXB. JAXB stands for Java Architecture for XML Binding. It offers the possibility to convert Java objects into XML structures and the other wa …

JavaFX Programming Cookbook

by Java Code Geeks on May 26th, 2017

JavaFX is a software platform for creating and delivering desktop applications, as well as rich internet applications (RIAs) that can run across a wide variety of devices. JavaFX is intended to replace Swing as the standard GUI library for Java SE, b …

Java Servlet Tutorial

by Java Code Geeks on May 26th, 2017

Java Servlets is a Java based web technology. Java Servlet technology provides Web developers with a simple, consistent mechanism for extending the functionality of a Web server and for accessing existing business systems. A servlet can almost be tho …

Java Design Patterns

by Java Code Geeks on May 26th, 2017

A design pattern is a general reusable solution to a commonly occurring problem within a given context in software design. A design pattern is not a finished design that can be transformed directly into source or machine code. It is a description or …

Back to top button