Submitted by heartin on Tue, 04/08/2014 - 10:41
Let us quickly see object oriented analysis, object oriented design, object oriented implementation using a 'Library Management System' example.
Submitted by heartin on Fri, 04/04/2014 - 06:43
You can download the Spring Tool Suite or the Spring Framework jars alone or use the maven/gradle repositories.
Using Spring Boot can make the getting started part much easier. However, a proper understanding of the non Spring Boot way of doing things will help you understand Sping Boot better.
Submitted by heartin on Sat, 03/22/2014 - 00:07
Java, being one of the most popular programming languages, has many frameworks, and some of these frameworks even solve similar problems. So the question is to use which framework or feature to solve a particular problem. You can read about our current technology directions and some reasons for chosing one framework or feature over the other here.
Submitted by jjadmin on Tue, 03/18/2014 - 08:49
A data warehouse is a database that is designed for querying, analyzing and reporting. A data warehouse is usually separate from your application database. While a regular application database only keeps enough information required to meet the current needs and archive the rest, a data warehouse will have current as well as historical data to support historical analysis. A data warehouse usually gathers data from various sources, and is generally read only as it is used only for querying, analyzing and reporting.
Submitted by heartin on Thu, 03/06/2014 - 08:03
This is a quick reference of constructors for various Stream classes.
You can quickly find out what all type of resources or streams a Stream class can be attached with. For instance, a BufferedReader do not have a constructor that can accept an InputStream, however an InputStreamReader has such a constructor that can accept an InputStream. So to use an InputStream such as System.in, we can attach it to an InputStreamReader and then attach the InputStreamReader to a BufferedReader as:
Pages