I just stumbled upon the Spring Loaded project on the Spring website today. I'm trying to integrate this into a Spring MVC (using Maven and TOMCAT) I've been working on.
As per the instructions on the project page, I've downloaded the JAR file and added the following in the TOMCAT VM arguments (Inside Eclipse):
-javaagent:C:\Users\xxx\Downloads\springloaded-1.2.0.RELEASE.jar -noverify
I've also disabled 'Automatic Publishing' in TOMCAT.
Now, Once I start TOMCAT and make any changes to the controllers (or any other classes), I do not see any hot deployment happening. Is there anything I'm going wrong or is there any other configuration required?
Would appreciate any inputs.