user2925058
user2925058

Reputation: 1

deploying two EARs in a single weblogic server

I am trying to migrate an application on a Weblogic server which already has an application in it. Please suggest if having two EARs in the same weblogic server is a feasible design

Upvotes: 0

Views: 1002

Answers (1)

Robin Green
Robin Green

Reputation: 33033

It is perfectly feasible and standard; however, there are one or two reasons why you might not want to do this.

One is file descriptor exhaustion. If one of the applications (EARs) runs out of file descriptors, it will probably crash / render inoperable the entire process, i.e. the entire Weblogic server.

Another is heap memory exhaustion; much the same problem occurs if one of the applications exhausts the maximum available heap memory.

Application servers try to isolate applications from each other, but cannot completely succeed at this due to the limitations of the JVM. Operating systems and virtual machine hypervisors are actually able to do a better job of isolating applications from each other.

Upvotes: 1

Related Questions