Registry / messaging / camel-rss

camel-rss

JSON →
library4.19.0javamavenunverified

Camel RSS support enables integration with RSS feeds for consuming and producing syndicated content in Apache Camel routes.

<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-rss</artifactId> <version>4.19.0</version> </dependency>
INSTALL
IMPORT
SIG · CAMEL-RSS
C
camel-rss
messagingjavav4.19.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

RssComponent
org.apache.camel.component.rss.RssComponent

Consumes an RSS feed and logs each entry using Camel RSS component.

import org.apache.camel.CamelContext; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.impl.DefaultCamelContext; public class Example { public static void main(String[] args) throws Exception { CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { @Override public void configure() { from("rss:http://example.com/feed.xml?splitEntries=true") .to("log:rss"); } }); context.start(); Thread.sleep(5000); context.stop(); } }
Debug
Known issues
gotchaCamel RSS component uses Rome library which may have version conflicts with other Rome dependencies in the classpath.
fix
Ensure consistent Rome version across all dependencies, or use Camel's BOM to manage versions.
affects: all
Upgrade
Version history
4.19.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
20 hits · last 30 days
node
16
OpenAI (training)
2
Amazon
1
Resources
camel-rss — mvn dependency:get camel-rss · libregistry