About 50 results
Open links in new tab
  1. java - What exactly is Apache Camel? - Stack Overflow

    Jan 13, 2012 · I don't understand what exactly Camel does. If you could give in 101 words an introduction to Camel: What exactly is it? How does it interact with an application written in …

  2. java - Send POST Request using Apache Camel - Stack Overflow

    Aug 1, 2019 · This page explains how to send POST requests using Apache Camel, a powerful integration framework for routing and processing messages.

  3. Apache Camel - Triggering a task on startup to run only once

    Nov 27, 2015 · I am working on a Java project using Camel & Spring. We would like to trigger an initialize method on a singleton bean after Spring finished doing its thing and Camel …

  4. Camel case and Pascal case mistake - Stack Overflow

    Jan 20, 2017 · Camel case: As the name show it follow the camel structure of word like mossawarHussain Difference: Pascal is a subset of Camel case. The first letter of Pascal is …

  5. java - Soap Request with Apache Camel - Stack Overflow

    Mar 31, 2022 · i have a wsdl file hosted on a site (which i can't share), and i want to invoke a soap request through apache-camel framework. I created a maven project, and used the …

  6. Camel Kafka - consumersCount and groupInstanceId - Stack …

    Nov 29, 2024 · When configuring Apache Camel as a consumer for Apache Kafka, you can set many configuration options including the following that are relevant for this question: …

  7. apache camel - Passing Exchange Property between routes within …

    Dec 18, 2018 · Direct routes are an exception because it is a Camel internal transport. So, Exchange properties are kept between direct routes. I guess that the whole Exchange is …

  8. Converting a string with spaces into camel case - Stack Overflow

    Mar 19, 2019 · How can I convert a string into camel case using javascript regex? EquipmentClass name or Equipment className or equipment class name or Equipment …

  9. How to configure Jackson ObjectMapper for Camel in Spring Boot

    Oct 29, 2015 · I have read the Camel JSON documentation, but it does not show how to add a custom DataFormat using Spring configuration, or how to apply a global customisation for all …

  10. JSON Naming Convention (snake_case, camelCase or PascalCase)

    Is there a standard on JSON naming?I see most examples using all lower case separated by underscore, aka snake_case, but can it be used PascalCase or camelCase as well?