Rebooting Vaadin user interfaces without restarting the application

I am developing the Vaadin 8 user interface. At this point, every time I change the user interface, I have to restart my application.

Is there a better way? I tried connecting the Java debugger and using the IntelliJ Reload Changed Classes function, but the failure was disabled.

I saw JRebel mentioned in the Vaadin context, but I can't afford it - Spring Loaded seems to be another option . Is there anything else?

+5
source share
2 answers
+1
source

We use Jetty in development and set up a hot deployment for it. Application status will be lost, but during development this is most likely exactly what you want. http://www.eclipse.org/jetty/documentation/9.4.x/hot-deployment.html

0
source

Source: https://habr.com/ru/post/1265731/


All Articles