Where Jboss7.1 Accepts a Military Deployment Application

I deployed the jboss-as-helloworld-errai application in my standalone jboss7.1 instance and I delete it last (in the * / standalone / deployments folder). But every time I restart my server, it deploys this application again. Is there any other place where jboss reader application to deploy? Best attitude

+3
source share
2 answers

Did you delete the file while the server was running?

JBoss probably still finds deployment information in your files /standalone/configuration/standalone*.xml(at the end of the file). JBoss unpacks its deployments in one of the folders /standalone/tmp/vfs/temp*. While it finds the deployment in your configuration file, it will launch the application.

standalone/data/content. . - CLI, maven -.

+4

. , ? :

Deploy

  • /standalone/deployments
  • .dodeploy
  • .deployed
  • ( )

Undeploy

  • /standalone/deployments
  • () .deployed
  • .undeployed
  • .

README.txt deployments undeployment .

  • rm $AS/standalone/deployments/example.war.deployed

. , . , . , , .

  • ( " " ) CLI. , , .
+2

All Articles