Tomcat Hot Deployment for new class files

I read about the autoDeploy attribute for "true" in server.xml but this hot deploy for tomcat only works to implement the existing method. If new java / class files are added, you still have to restart the server.

I was wondering if there is a way to hot install from tomcat without rebooting when new files are added.

0


source to share


1 answer


If you need it to improve productivity when developing Java applications while saving time on waiting for reruns, JRebel is a good bet. It works out of the box and will seamlessly inject new code into your JVM without the need for reloading and configuration reloading support of many popular libraries and frameworks. It's not cheap, but at $ 475 per license.



https://zeroturnaround.com/software/jrebel/

+1


source







All Articles