Andy Clement

Results 65 comments of Andy Clement

Yes, that is the expected behaviour. The Spring reloading plugin is very basic.

Yes, I don't think any work has been done to recognize or deal with default methods yet.

Are you able to attach a working code sample and describe the modification you make? That'll be the quickest way to get to the root of the problem.

Whether it'll work may depend on any class loader trickery going on in those environments. If they follow a normal traditional delegation model, it'll probably work. If they don't, it...

I haven't done this a lot myself but on the server properties page in STS there is a section "Application Reload Behaviour", choose the java agent based reloading option. You...

There are configuration options here, for example the registered plugins are called with a `shouldBeMadeReloadable()` call. Or you can specify inclusions via `-Dspringloaded=inclusions=grails.plugins..*` Are you finding neither of those work...

I added a possible fix for this, always a little tricky when I don't have a reliable testcase.

If you can attach a failing sample (or email me one) I can dig into it. I suspect it is related to the package name cache we keep which records...

How are you adding the new classes? As in how are you referring to what you are adding: are they new annotations, new enums, new annotation value types, or just...

Oh I see. Adding a new Controller means that we have to kick Spring to tell it about the new Controller - so the class reloading is fine but the...