Updates in code not being run during Debug, Eclipse

0

I work with Eclipse and WildFly. Well, my question is simple: I made some changes to the code, but when I debug I noticed that this change was not running, as if Eclipse always executed the old version of the code, ignoring my changes. With this problem I was not able to test my code changes, I had to commit, and another developer updated the code with my changes and managed to test.

I tried to build, clean, download the project again, however, none of the attempts worked.

Has anyone ever had anything like this, if so, how did you proceed?

Thank you, Regards

    
asked by anonymous 02.02.2017 / 12:07

1 answer

0

I've been through something like this several times, the problem always was that the project had to be deployed (deploy again) to the application server. In this case, it is good to restart the JVM so that the class loader will run again as well.

    
02.02.2017 / 12:11