Hello, Implementing injection workers I experienced that the worker is invoked only the first time the page is called. I think this behavior is new since couple of days. Working with the earlier 5.0.8 snapshots the worker was invoked every time the page is called. The contribution of the worker is like this: public static void contributeComponentClassTransformWorker( OrderedConfiguration<ComponentClassTransformWorker> configuration, ObjectLocator locator, InjectionProvider injectionProvider, Environment environment, ComponentClassResolver resolver, RequestPageCache requestPageCache, BindingSource bindingsource, ApplicationStateManager applicationStateManager) { configuration.add("In", new InWorker()); configuration.add("Out", new OutWorker()); }
Are there some changes I should consider implementing transformation workers? -- Best regards, Igor Drobiazko