Spring Boot is probably the fastest way to get a Spring application up and running within less than 5 minutes and a very few little lines of code. I like to think at Spring Boot as a framework that takes most of the work out when it comes to configuring Spring-basedContinue Reading

Spring Framework - Photo Source: steveshaw.ca

The first version of Spring Framework was written by Rod Johnson in October 2002 and released in June 2003 under the Apache 2.0 license. The Spring framework is an open source application framework and Inversion of Control container for the Java platform. The core features of the Spring Framework canContinue Reading

Java Struts Framework

Struts is an open-source web application framework for developing Java EE web applications. It uses and extends the Java Servlet API to encourage developers to adopt a model-view-controller (MVC) architecture and relies on standard technologies like JavaBeans, java servlets and JSP (java server pages). The struts framework provides three keyContinue Reading

Java Hibernate Framework

Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions. Hibernate is free and distributed under the GNUContinue Reading

Java JDBC Framework

Java Database Connectivity (or simple JDBC) is an API for the Java programming language that defines how a java program may access data stored in a relational database. JDBC provides methods for querying and updating data in a database. For the first time, JDBC has been released by Sun Microsystems on FebruaryContinue Reading

Java Collection Framework

The Java Collections Framework is a unified set of classes and interfaces defined in the java.util package for storing collections. At the other side, a collection is a group of objects contained in a single element. To represent the various type of collections, the java.util package contains a group ofContinue Reading