此内容没有您所选择的语言版本。
Chapter 41. EJB
EJB Component 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
The EJB component binds Java Enterprise Java Beans to Camel message exchanges. For example:
CamelContext camelctx = new DefaultCamelContext();
camelctx.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start").to("ejb:java:module/HelloBean");
}
});
Camel on EAP deployment 复制链接链接已复制到粘贴板!
复制链接链接已复制到粘贴板!
This component is supported by the Camel on EAP (Wildfly Camel) framework, which offers a simplified deployment model on the Red Hat JBoss Enterprise Application Platform (JBoss EAP) container. For details of this model, see chapter "Apache Camel on JBoss EAP" in "Deploying into a Web Server".