I vaguely remember a while back an attempt to make packages, etc. reloadable.
This was before we created an OSGi plugin, so it might not be relevant any
more.
IMO, between the OSGi plugin and the new spring enhancements you added, there
is probably no need to worry about being able to reload t
This code in DefaultActionInvocation.createResult:
ActionConfig config = proxy.getConfig();
Map results = config.getResults();
ResultConfig resultConfig = null;
synchronized (config) {
try {
resultConfig = results.get(resultCode);
} catch (NullPointerExce