I am using Grails 2.3.8
When I change a method's name in a service class, and try to invoke it I get an error similar to this:
org.springsource.loaded.ReloadException: ReloadableType.determineDispatcher(): expected com.SomeService$$EnhancerBySpringCGLIB$$a85275cb to be reloadable
Now I guess this is because the actual service class is being wrapped in spring's "enhancer" and this somehow makes it unreloadable, but I'm not exactly sure why, and I have not found any information concerning this.
Is there a workaround for this, or do I have to restart the application whenever I change a method's name ?