jboss7.x - meaning of deploy term on Application Server -
Can you please tell me what is the meaning of deployment on an application server (for example, jbis)? Does it mean war / ear loading class in JVM? If so, does the war / ears not being automatically deployed when the server closes? When the server stops, is there war with the posted marker?
When you open an app, the server allocates resources to that app to work. As you say, it means that the app's classes are loading, but the database connection is also making.
When you stop the server, all apps are unemployed (because you are ending jvm)
Once the app server is down, jvm no longer exists, so no one The app will not be deployed.
Comments
Post a Comment