What is Object Oriented Programming?

What is Object Oriented Programming (OOP)? Object Oriented programming is a programming paradigm wherein all information is stored within the object and all ‘actions’ are performed by the objects. In the first tutorial, we explained the concept of Objects and classes. We defined “class” as a template that stores information about the state(customer’s name, address … Read more

An introduction to Java Class and Object

In this tutorial, we will introduce Java class and object. By now you must have heard that Java is an object-oriented programming language and everything in java is an object backed by a template called a class.The aim of this tutorial is to introduce new programmers to classes and objects and not to explain the … Read more

Hibernate: Performing One-To-One Bidirectional Mapping Using JPA Annotation Mapping

Contents Pre-Requisite Concept Overview Required Libraries Diagrammatic Representation Sample Program Source Package Structure Source Code Running Sample Program Browsing the Program In this tutorial we model a one to one bidirectional relationship between two entities using JPA annotations. This tutorial is divided primarily into the following sections: Concept Overview Sample program Pre-requisite Basic familiarity with … Read more

Hibernate: Performing One-To-One Bidirectional Mapping Using XML Mapping

Contents Pre-Requisite Concept Overview Required Libraries Diagrammatic Representation Sample Program Source Package Structure Source Code Running Sample Program Browsing the Program In this tutorial we model a one to one bidirectional relationship between two entities. This tutorial is divided primarily into the following sections: Concept Overview Sample program Pre-requisite Basic familiarity with JDBC (Java DataBase … Read more

Hibernate: Performing One-To-One Unidirectional Mapping Using JPA Annotations

Contents Pre-Requisite Concept Overview Required Libraries Diagrammatic Representation Sample Program Source Package Structure Source Code Running Sample Program Browsing the Program In this tutorial we model a one to one relationship between two entities and then perform basic database operations like insert, update, select and delete on them. We shall use JPA annotations for performing … Read more

Hibernate: Performing One-To-One Unidirectional Mapping Using XML Mapping

Contents Pre-Requisite Concept Overview Required Libraries Diagrammatic Representation Sample Program Source Package Structure Source Code Running Sample Program Browsing the Program In this tutorial we model a one to one relationship between two entities and then perform basic database operations like insert, update, select and delete on them. This tutorial is divided primarily into the … Read more

Spring Remoting: HTTP Invoker

Concept Overview In the earlier articles we saw an introduction to spring remoting and its support for RMI, Hessian and Burlap. In this tutorial we look at one more support for remoting – HttpInvoker. HttpInvoker combines the ease of Hessian and Burlap, in that it is very easy to set up. It serializes and deserializes … Read more