Skip to content

kayalvizhi-kandasamy/GitHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Overview

There are different web applications deployed in the same web container and if one application wants to access some POJOs
(Plain Old Java Object) present inside other web application, in order to fulfill its needs. (Say there are two web applications 'Foo' and 'Bar' deployed in the same web container. Application 'Foo' depends on 'Bar' to access a method say 'barMethod()' of 'BarService' of a POJO class present inside the 'Bar' application), then

  • The 'Bar' application servlet must provide a method to access its POJO classes
  • The 'Foo' application either has to go with 'RequestDispatcher's' 'forward' or 'Response's' redirect' methods pointing to the 'Bar' application servlet.

Though both the applications reside inside the same container and 'Foo' application knows what method of the POJO class of 'Bar' application it has to access, it has to go through the network using HTTP protocol as if 'Foo' application request is considered as a browser client request to 'Bar' application. Is there an optimal way to avoid the HTTP protocol overhead comes when we use 'forward' / 'redirect'?

Solution

Yes..The solution to avoid the HTTP protocol overhead is to make use of Cross-Context Way of communication between web applications what is experimented in the code

So there are two maven projects, 'Foo' and 'Bar' in which the the traditional way of communication ('forward'/ 'redirect') and cross-context way of communication between web applications are implemented. Added to that, the concept of serialization and deserialization of custom data type objects when used as parameters of a method invocation and/or as a return type of a method is also implemented. So, do a maven clean and install; deploy the web application archives (WARs) to a web container (say Tomcat), after enabling the 'cross-context' in it and see them in action.

About

My Experiments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages