I’ve deployed the jboss-as-helloworld-errai application in my standalone jboss7.1 instance, and I deleted it later ( in the */standalone/deployments folder). But every time I restart my server it redeploys that application.
Is there another place where jboss reads the application to deploy?
Best regard
I’ve deployed the jboss-as-helloworld-errai application in my standalone jboss7.1 instance, and I deleted it
Share
Did you delete the file while the server was running?
Probably, JBoss still finds a deployment information in one your
/standalone/configuration/standalone*.xmlfiles (at the end of the file). JBoss unpacks its deployments in one of the/standalone/tmp/vfs/temp*folders. As long as it finds a deployment in your configuration file, it will start the application.The deployment binaries are located under the
standalone/data/content. These would also need to be deleted. The best solution is to properly undeploy the application via CLI, the maven plug-in or the web console.