Clustering any java application on weblogic

82 Views Asked by At

I am new to clustering on Weblogic and read this tutorial. Now I want to know that is that possible to cluster any java application on Weblogic? in that tutorial is discussed about Ejb-based applications. My application has no framework and is just simple JavaEE application and I want to cluster it on weblogic.

1

There are 1 best solutions below

0
On

Yes, you can. This is simply replicate your app into multiple servers and a load balancer on top of these will distribute the requests among them. You have to only check your resource (server, database etc.) support it and there is no multithreading / concurrency issue with your code.