sagar27
sagar27

Reputation: 3221

Change the static content such as HTML, JS and CSS in a war file without re-deployment on JBoss 5

Currently i am working on an application which has a lots for JQuery and CSS resources. I am using Springs 3 and JBoss 5.The problem is where i make any changes to HTML, JS or any CSS, to view the changes i need to Re-Deploy it. I have already configure JBoss to deploy the war from Remote location. Is there any way to achieve this, that is the change i made in the source file are some how reflected in the deployed (what I mean by this is as the CSS and JS have the related paths so if some how I point those to my source it should work).

Upvotes: 0

Views: 3143

Answers (1)

Asad Rasheed
Asad Rasheed

Reputation: 518

make your war uncompressed and deploy it on jboss, then you can change your static resources without redeploying the whole war. In my opinion you should use some automated tools to update your project archives such as jboss tools' project archives.

Upvotes: 3

Related Questions