How to Camel Debug a Camel Quarkus route deployed on OpenShift from VS Code Requirements This how-to will not cover in details the following points, it is assumed that it is installed/preconfigured: VS Code with the Extension Pack for Apache Camel with a folder opened Active connection to an OpenShift cluster JBang available on Command-Line Interface (CLI) Maven available on CLI Note that this tutorial was made with the following versions:
Continue reading ❯
TOOLINGCAMEL QUARKUS
Prerequisites Visual Studio Code GraalVM for JDK 20+ Maven 3.9.3+ Extension Pack for Apache Camel by Red Hat Step-by-Step These steps provide a structured approach to generating, setting up, building, and debugging a Camel Quarkus native application within the VS Code environment. Generate Example Camel Route in VS Code Workspace Within your clean VS Code workspace, initiate the creation of an exemplary Camel route using the command Camel: Create a Camel Route using Java DSL.
Continue reading ❯
TOOLINGCAMEL QUARKUSEVENTS
In this post I want to share with you how to implement a complete, end-to-end Content Based Routing solution using Apache Camel, AtlasMap and Quarkus as a developer platform, including: Drools DMN Engine, Kogito. Apache Kafka is used in this solution as a message broker. Content based routing overview Here is the Enterprise Integration Pattern (EIP) diagram of the flow, annotated with some details of the components used: The focus of this solution is routing healthcare-related messages; for this demo example, messages are routed accordingly to the following decision table rules:
Continue reading ❯
CAMEL QUARKUSUSECASES
Do you fancy running camel route as functions in AWS Lambda. Well I did a small Proof Of Concept to test this and the results were interesting. Thanks to the Quarkus and Camel-Quarkus communities for their efforts to make this technically possible. You can find the working sample in the Camel Quarkus Examples github repo #Deploying a Camel Route in AWS Lambda : A Camel Quarkus example This project uses the following framework
Continue reading ❯
USECASESCAMEL QUARKUS
I will have the pleasure to cast a new demonstration explaining further development tips for Camel Quarkus at Apache CON @HOME 2021. Some details still remain to be polished, however I can already share with you the preview below: This live coding presentation will be split in 2 parts. First part where we step into the shoes of a day to day Camel Quarkus developer The idea is really to implement a typical Camel route on a local machine.
Continue reading ❯
EVENTSCAMEL QUARKUS
Some tips related to configuration in Camel Quarkus
Continue reading ❯
CAMEL QUARKUS
Even implementing a simple stateless micro-service, one could face situations where testing becomes hard. A lot of tools and techniques could help, but having something at hand quickly is very handy. In this post, I’m introducing a Quarkus feature that plays nice with Camel in order to mock beans for test purpose. Camel and Quarkus together for mocking beans It’s long known that Camel offers great support for Java beans. Every time a developer needs custom code, this feature comes to the rescue.
Continue reading ❯
HOWTOSCAMEL QUARKUS
Camel and Camel Quarkus are typically used to create integration applications that run as long living processes, a.k.a. daemons or services. In this blog post, we are going to explain a slightly different use case: using Camel Quarkus in programs that exit by themselves after performing some desired tasks. Where can this be useful? The enterprise is full of scheduled batch processing. Say, some system exports some sort of reports daily at 4 a.
Continue reading ❯
HOWTOSCAMEL QUARKUS