We're considering about switching from Eclipse to IntelliJ IDEA. We have to use JRebel so we don't have to restart the app each time we change a line of code.
Every time I change one line of code in one .java file, and after invoking the IntelliJ make process on that particular file, JRebel seem to reload a whole bunch of client-side classes.
With Eclipse, this brutal reloading behavior might happen sometimes, but in most cases the class reloading process is much faster !
I think that I'm missing something. Does anyone with experience using IntelliJ and JRebel know how to have JRebel plugin reload one single class when nothing more is needed ?
Any help would be greatly appreciated !
- Note 1 : I know super dev mode could help but I'd like to have the JRebel plugin work first.
- Note 2 : the VM arg
-Drebel.check_class_hash=true
helps too, but I don't think the plugin is meant to work that way.