Does rosjava have explicit support for hot class reloading?
I want to have dynamic dependencies in rosjava, but it is not working.
rosjava can have jar-files as dependencies, but what if a jar-file gets recompiled while my rosjava node is still running? Does rosjava have explicit support for hot class reloading? Or do I have to add this myself, for example by using JRebel? (or a similar plugin?)
If such support already exist in rosjava, how do I use this? I tried to set the "changing"-parameter in my Gradle build-file to true for my jar dependency (which is on my local filesystem), it gives no errors, but my node still uses the old dependency from before recompilation instead of the newly compiled jar-file. So this is not enough and more needs to be done.