We are using Activiti(Rest api) with Spring. We have deployed a process on the activiti engine. We are trying to start the process via activiti-rest api. We have usertask inside the process which uses a java class. When try to execute the code by invoking the rest-url via client application we are getting "Class not found exception" for all the spring beans. We have used annotations for dependency injection.
We want to know that , whether annotations are working or not in activiti spring configuration?
Sure, we use annotations a lot as well. You would have to make sure the package that contains your spring beans are scanned by the Spring container. Then you can use the Spring bean id in an expression in Activiti. Can you show what you are trying to do in BPMN XML?