Visual Editor for Apache Camel [closed]
Asked Answered
F

3

1

I am new to Apache Camel and wonder if there is any open source visual editor for it similar to JBoss Fuse. Please share what you guys use for visual editing or simple visualizing of Apache Camel. Many thanks!

Farika answered 5/2, 2018 at 11:32 Comment(3)
Honestly, you are better off using the java dsl for coding and then use hawtio for visualizing your flows and accessing other stuff.Sellma
Thanks! Can you pls share a link/resource to set hawtio with java app running in eclipse?Farika
Look at the hawtio website. There are good instructions there.Sellma
H
7

There is Fuse Tools for Apache Camel that has a visual editor with drag-drop capabilities

That is a set of Eclipse plugins you can install. It's free to use and supports XML editing of standard Apache Camel XML files.

Heffner answered 5/2, 2018 at 12:50 Comment(0)
K
3

There are several projects that offer visual / low-code tools for Apache Camel:

The first three are EDI plugins, the others are self-hosted web applications/platforms.

Note: There is also a graphical mapper:

Kathiekathleen answered 24/3, 2022 at 10:18 Comment(0)
T
2

There is Karavan (Apache Camel Karavan) an VSCode extension, that can also be used as a standalone webapp, visual editor for creating YAML files.

If you have docker, you can run it with:

docker run -it -p 8080:8080 -v $(pwd):/deployments/integrations ghcr.io/apache/camel-karavan-native:latest

This will run Karavan webapp at HTTP port 8080 on localhost, note you will need a directory deployments/integrations on your current directory before run this comand (you can also change it to what you want), this directory is where your integration files will be persisted.

Telles answered 18/11, 2021 at 11:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.