mrinalsharma opened a new issue, #500: URL: https://github.com/apache/camel-karavan/issues/500
I have created a custom processor by following the code in https://github.com/apache/camel-karavan/tree/main/karavan-demo/postman/project. When the project is deployed in minikube, the following error is seen > 2022-10-21 02:27:45,052 ERROR [org.apa.cam.qua.mai.CamelMainRuntime] (main) Failed to start application: java.lang.RuntimeException: java.lang.ClassNotFoundException: Customprocessor Processor Code: ``` import org.apache.camel.BindToRegistry; import org.apache.camel.Exchange; import org.apache.camel.Processor; @BindToRegistry("Customprocessor") public class Customprocessor implements Processor { public void process(Exchange exchange) throws Exception { exchange.getIn().setBody("Hello world"); } } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org