Minibooks

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

Amazon DynamoDB Tutorial

by Java Code Geeks on November 1st, 2017

Amazon DynamoDB is a fully managed proprietary NoSQL database services that is offered by Amazon.com as part of the Amazon Web Services portfolio. DynamoDB exposes a similar data model and derives its name from Dynamo, but has a different underlying …

Java NIO Programming Cookbook

by Java Code Geeks on June 21st, 2017

java.nio (NIO stands for non-blocking I/O) is a collection of Java programming language APIs that offer features for intensive I/O operations. It was introduced with the J2SE 1.4 release of Java by Sun Microsystems to complement an existing standard …

Vaadin Programming Cookbook

by Java Code Geeks on June 9th, 2017

Vaadin is an open source web framework for rich Internet applications. In contrast to JavaScript libraries and browser-plugin based solutions, it features a server-side architecture, which means that the majority of the logic runs on the servers. Aja …

Spring Integration for EAI

by Java Code Geeks on June 9th, 2017

Spring Integration is an open source framework for enterprise application integration. It is a lightweight framework that builds upon the core Spring framework. It is designed to enable the development of integration solutions typical of event-driven …

Spring Framework Cookbook

by Java Code Geeks on June 9th, 2017

The Spring Framework is an open-source application framework and inversion of control container for the Java platform. The framework’s core features can be used by any Java application, but there are extensions for building web applications on top of …

Spring Data Programming Cookbook

by Java Code Geeks on June 9th, 2017

Spring Data’s mission is to provide a familiar and consistent, Spring-based programming model for data access while still retaining the special traits of the underlying data store. It makes it easy to use data access technologies, relational and non- …

Selenium Programming Cookbook

by Java Code Geeks on June 9th, 2017

Selenium is a portable software testing framework for web applications. Selenium provides a record/playback tool for authoring tests without learning a test scripting language (Selenium IDE). It also provides a test domain-specific language (Selenese …

Mockito Programming Cookbook

by Java Code Geeks on June 8th, 2017

Mockito is an open source testing framework for Java released under the MIT License. The framework allows the creation of test double objects (mock objects) in automated unit tests for the purpose of Test-driven Development (TDD) or Behavior Driven D …

JUnit Programming Cookbook

by Java Code Geeks on June 8th, 2017

JUnit is a unit testing framework to write repeatable tests. JUnit has been important in the development of test-driven development, and is one of a family of unit testing frameworks which is collectively known as xUnit that originated with SUnit. A …

Back to top button