Andy Clement
Andy Clement
Are you getting any output? Have you tried '-Dspringloaded=verbose' do you get lots of output in that case showing the agent is active?
The max size for code in a method is 64k. We add a _lot_ of byte code during load time as the types are modified. If you have big methods...
To answer your first point: Yes, jar watching has been added recently. It is discussed (and syntax shown) here: https://github.com/spring-projects/spring-loaded/issues/70 It watches where things are loaded from - if you...
I put in a guard to catch this and the exception is simply logged. Whether it is a real issue or 'harmless' would be determined by checking if your request...
I put in a change for #116 that might affect things here too. People have tried in the past to use this with an Eclipse setup but it really wasn't...
I can imagine exclusions are not working with invokedynamic, there are no tests for that scenario and whether exclusions were occurring was not considered in the quick prototype effort that...
I'd rather not break the behaviour on the older JDKs at the moment, so we need a fix that doesn't cause that problem. But I guess I could put this...
A sample project would be awesome. I think I know what is up with it but that'll be very useful to confirm it. If you can try it, I'd be...
Those are just INFO messages though aren't they. The original error isn't in there. Did you try, instead of using a breakpoint in debug mode to pause it, add a...
Yes, it does only watch class files right now (and most recently jars of classes too) - but it can theory watch anything/everything for changes.