Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Incremental hot deployment on Tomcat with Maven and NetBeans

I'm using NetBeans 6.8, Tomcat 6, and Maven 2.2 and want to see changes in my code immediately in the browser (showing http://localhost:8080) after saving the file.

The tomcat-maven-plugin has the following configuration:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>tomcat-maven-plugin</artifactId>
  <version>1.0-beta-1</version>
</plugin>

Following to the output it should perform in-place deployment.

What can I do to see changes in my Java code immediately in the browser?

like image 603
deamon Avatar asked May 03 '10 08:05

deamon


1 Answers

Take a look at JRebel. It should do what you want. Painlessly.

like image 62
Mikkel Løkke Avatar answered Nov 20 '22 00:11

Mikkel Løkke