Dropwizard hot deployment

后端 未结 3 1930
暗喜
暗喜 2021-02-14 18:11

I\'m looking for a simple to use system in Java which creates a REST service for me. So I found dropwizard but as far as I can use google it turns out it lacks hot deployment al

相关标签:
3条回答
  • 2021-02-14 18:54

    You don't have to use the shade plugin to run your service. You could just compile as a regular jar file and I think that would let you use your IDEs hot deployment features.

    0 讨论(0)
  • 2021-02-14 18:58

    Have you ever tried JRebel ? They have JAX-RS support as well...

    0 讨论(0)
  • 2021-02-14 19:05

    Not an answer, but I wrote up an article detailing how to use git to push a Dropwizard project to your server and for it to initiate a hot replacement. It relies on git hooks and running Maven via a script on the server.

    You can find the details about it here: http://gary-rowe.com/agilestack/2013/02/14/how-to-deploy-dynamic-sites-with-git/

    0 讨论(0)
提交回复
热议问题