I'm looking for a tool able to deploy partial webapps, not just deploying a war containing a whole new version of a webapp. The purpose is to permit automated deployment (for example, but not only, properties files) in a Mavenized environment. Any idea?

link|improve this question

3  
It's called exploded deployment. You deploy a folder instead of a [J|W|E]AR, which means you can update individual files in the folder instead of the whole archive. What container/app server are you using? – Matt Ball Jan 30 at 16:37
Interesting. I didn't know the expression. Do you know any tool to automate the process? – Traroth Jan 30 at 16:49
1  
blog.teamextension.com/… <-- This page explains using an exploded WAR through Eclipse and Tomcat – Bry6n Jan 30 at 17:23
Again, it would be helpful if you could tell us which specific Java technologies you're using. – Matt Ball Jan 30 at 19:45
I'm using Tomcat and JBoss, with Spring. – Traroth Jan 30 at 22:03
feedback

4 Answers

up vote 1 down vote accepted

Kwatee (http://www.kwatee.net) can do both war or exploded deployments. It has a web user interface but you can automate it via python CLIs or a supplied ant task.

link|improve this answer
feedback

http://liverebel.com - Take a look on LiveRebel. I think that is what you need.

link|improve this answer
feedback

I think you could use the maven wagon plugin to do this. Try the wagon:upload-single goal - I think it is what you are looking for, you just need to fill in the configuration blanks so to speak.

One gotcha to remember - you need to add the server configuration to your maven settings.xml file, which is pretty easy to do, just don't forget it.

link|improve this answer
feedback

I have found some tools, too:

  • Glu, which is maintained by the LinkedIn team
  • ControlTier, which seems able to do that and much, much more
  • Chef, which is a Java framework if you want to write your own deployment tool (which is not my case, but could be interesting for somebody else)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.