Atlasmap Support for Quarkus
See original GitHub issueHi Team,
I am trying to run a small quarkus camel project for using atlas map. Any plans of creating a quarkus camel supporting below error. “No endpoint could be found for: atlas://map/simple-mapping.adm, please check your classpath contains the needed Camel component jar”
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://camel.apache.org/schema/spring" xsi:schemaLocation=" http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<route id="xml-atlasmap">
<from uri="timer:simple?repeatCount=1"/>
<to uri="language:constant:resource:classpath:/data/individual.xml"/>
<to uri="atlas:map/simple-mapping.adm"/>
<log message="result is:\n ${body}"/>
</route>
</routes>
Added maven dependency below
<dependency>
<groupId>io.atlasmap</groupId>
<artifactId>camel-atlasmap</artifactId>
<version>1.42.4</version>
</dependency>
Regards, Rahul
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
atlasmap - Quarkus
The example encourages API best practices, with effortless coding effort showcasing AtlasMap for data transformation.
Read more >AtlasMap - Apache Camel
Check the User guide for more information about writing Camel Quarkus applications. ... The allowContextMapAll option is not supported in native mode as...
Read more >AtlasMap native support · Issue #1989 · apache/camel-quarkus
A JVM-only extension is ready in the camel-master branch. All reactions.
Read more >AtlasMap User Guide
AtlasMap supports the following general types of mappings: One to one — Map one source field to one target field. Many to one...
Read more >Normalize web services with Camel K and AtlasMap, Part 2
Connect web services with Camel K and AtlasMap. Learn how to inspect the service interface, design an OpenAPI definition, map data, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
There is a JVM support in camel-quarkus since 1.5 version. You can use the camel-quarkus-atlasmap depency for Quarkus JVM mode. I’m working currently on porting it to native mode, see camel-quarkus-1989, so it will be soon available as a stable extension.
You can close this issue