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.
SjmsComponent
✓ org.apache.camel.component.sjms.SjmsComponent
Minimal Camel route using SJMS component.
import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.component.sjms.SjmsComponent;
public class Example {
public static void main(String[] args) throws Exception {
CamelContext context = new DefaultCamelContext();
context.addComponent("sjms", new SjmsComponent());
context.addRoutes(new RouteBuilder() {
@Override
public void configure() {
from("sjms:queue:test").to("log:test");
}
});
context.start();
Thread.sleep(5000);
context.stop();
}
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.