Reputation: 946
I have a rather unusual idea. I want to run a single instance of a Java EE application client inside app server, in a similar way that JMS provider is run/embedded "within" the app server, so that it is started and stopped with the app server. Why? To ease deployment and maintenance of a complex distributed Java EE system which has application client as part of its architecture.
So:
Is this possible?
Upvotes: 0
Views: 617
Reputation: 38605
To ease deployment and maintenance of a complex distributed Java EE system which has application client as part of its architecture.
I don't get your idea. But if you want to ease the deployment and maintenance, use rather Java Web Start to deploy the client application. This will simplify the deployment issue a lot. This is supported by Glassfish.
See this answer.
Upvotes: 1