Please Help me i am configuring Rest endpoint using jetty component but iam getting following error. i am not uderstanding what it is.
StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/camel/SSLContextParametersAware at java.lang.ClassLoader.defineClass1(Native Method) And following is my code. restConfiguration().component("jetty") .bindingMode(RestBindingMode.json) .port(8097); rest("/cbs") .consumes("application/json") .produces("application/json").post("/withdraw") .type(Test.class).to("bean:CBSTransactionService?method=handleTransactions"); i have added jetty dependency 2.19 version. please help me. -- View this message in context: http://camel.465427.n5.nabble.com/Getting-StreamCaching-is-not-in-use-If-using-streams-then-its-recommended-to-enable-stream-caching-Sl-tp5799766.html Sent from the Camel Development mailing list archive at Nabble.com.