Hello,
I partially followed the java EE 7 tutorial, I created a maven project with a process that executes a service task (Delegate Expression - #{getStats})
Then I created a simple java delegate
@Named("getStats")
public class GetStatsDelegate implements JavaDelegate {
private final Logger LOGGER = LoggerFactory.getLogger(GetStatsDelegate.class.getName());
public void execute(DelegateExecution execution) throws Exception {
LOGGER.info("Get Stats.........");
}
}
I wrote a unit test in which the service gets called correctly.
then I deploy the war to wildfly and when I try to start the process I get the error in the title. (The process is quite simple at this stage, with only the service task)
I also checked the war and the the delegate is included.
Any ideas?
Thanks!
Thanks