Reputation: 17
I wanted to run the same application for different environments in single app websphere server . Can anyone have steps please.
Upvotes: 0
Views: 1394
Reputation: 1002
I think you can also override the context root of the application at deploy time, using either wsadmin scripting or the admin console, so you could have /appfortest /appforload /appforprod, etc. Even if it's the same ear deployed multiple times, Websphere will treat them as different apps at different context roots.
Upvotes: 0
Reputation: 1229
If the server is part of a network deployment installation of WebSphere you can set an edition name when you install the application through the admin console or wsadmin. Then it will be managed by the editions manager. So you install the same app multiple times with the same name but different editions and each edition can have a different ear, can have different resources and shared libraries and so on.
This page in the documentation discusses the editions feature so you can see if it's what you're looking for.
Upvotes: 1