Embedded Jetty 8 hot deploy classes (using Maven)
I have a standard Maven webapp structure defined, and it uses Spring MVC. I am using an embedded Jetty server (java class) for testing the application in development. The code used to create the Jetty server is outlined below. If I make changes to any JSP files, the changes are immediately visible in the browser. However if I change any class files, e.g Controllers, the changes are not hot deployed? What do I have to do get this to work? I have searched this and I think I need to use the class org.eclipse.jetty.util.Scanner and specifically the setScanInterval method, but not sure how to wire