I'm developing a maven modular project with Spring and Vaadin that has the following structure:
|-- parent (pom packaging)
|-- model (jar packaging)
pom.xml
|-- services (jar packaging)
pom.xml
|-- web-app (war packaging)
pom.xml
Now my trouble is that very often when I try to opdate my code during debug i get the following error
I'm deploying my web-app project using jetty embedded from eclipse using the following configuration
-XX:PermSize=256M -XX:MaxPermSize=1024M -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8080
What could be the problem? Where am I doing wrong?