Vijey
Vijey

Reputation: 6626

JBoss - How to have a fixed name for exploded war directory?

Is it possible to configure JBoss to have a fixed directory name for the exploded war present inside tmp directory? On every restart, the exploded war directories name changes with a random string is appended to them.

In JBoss 6, we have the following structure for our war file my-project.war:

JBOSS_HOME\server\default\tmp\vfs\automount8sc4d112587f64c\my-project.war-98eea116d17f4a53

What I want is: Can we have the above path name fixed for all restarts and deployments?

We could not bookmark the jsp/html/js/css files in our text editors due to this.

In WebLogic server, there is a fixed directory structure for all restarts and deployments. It is very convenient for quick HTML/CSS/JavaScript coding. Can we have something like that in JBoss.

Upvotes: 0

Views: 730

Answers (1)

powerMicha
powerMicha

Reputation: 2773

You are trying to reference the temp directory of jboss where the application server unzips war-files, etc.

Try to unzip your war file, name the folder <your-project>.war and move it to the deploy folder. Unless jboss does not need to unpack it, the files (HTML/CSS/JavaScript) should be delivered from this place.

Upvotes: 5

Related Questions