Spring Beanfactory and ApplicationContext

Spring BeanFactory and ApplicationContext are interfaces responsible for configuring a Spring application. BeanFactory is the main interface for accessing the spring container and acts as a central registry of all components. BeanFactory along with its subinterfaces are also responsible for implementing dependency injection. An ApplicationContext extends the functionality of a BeanFactory and provides additional methods. … Read more

Hibernate: Performing One-To-Many 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 many 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-Many 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 many 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 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

Hibernate: Performing Basic Database Operations (select, insert, update, delete) Using JPA Annotation Based 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 shall perform basic database Operations (Create, Retrieve, Update, Delete) using JPA Annotations based mapping using Hibernate. This tutorial is divided primarily into the following sections: Concept Overview Sample program Pre-requisite … Read more

Hibernate: Performing Basic Database Operations (select, insert, update, delete) Using XML Based Mapping Next

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 shall perform basic database Operations (Create, Retrieve, Update, Delete) using XML based mapping using Hibernate . This tutorial is divided primarily into the following sections: Concept Overview Sample program Pre-requisite … 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