Apache Camel: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 65: Line 65:
* [https://github.com/apache/camel-spring-boot-examples Apache Camel Spring Boot Examples]
* [https://github.com/apache/camel-spring-boot-examples Apache Camel Spring Boot Examples]
* [https://camel.apache.org/components/2.x/mina2-component.html Apache Camel Mina2 Components]
* [https://camel.apache.org/components/2.x/mina2-component.html Apache Camel Mina2 Components]
* [https://camel.apache.org/manual/latest/oncompletion.html Apache Camel OnCompletion]
* [https://camel.apache.org/camel-spring-boot/3.7.x/mina-starter.html Apache Camel Mina2 Starter]
* [https://camel.apache.org/camel-spring-boot/3.7.x/mina-starter.html Apache Camel Mina2 Starter]
* [https://camel.apache.org/camel-spring-boot/3.7.x/hl7-starter.html Apache Camel HL7 Starter]
* [https://camel.apache.org/camel-spring-boot/3.7.x/hl7-starter.html Apache Camel HL7 Starter]
* [https://camel.apache.org/manual/latest/predicate.html Apache Camel Predicates]
* [https://camel.apache.org/manual/latest/lifecycle.html Apache Camel Lifecycle]


| valign="top" |
| valign="top" |
* [https://camel.apache.org/manual/latest/spring-remoting.html Apache Camel Spring Remoting]




|}
|}

Revision as of 07:58, 22 January 2021

Route

package org.chorke.academia.java.mllp.engine.route;

import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.spring.SpringRouteBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.chorke.academia.java.mllp.engine.beans.listener.LabScheduleListener;

@Component
public class ScheduleRoute extends SpringRouteBuilder {
    private static final Logger LOG = LoggerFactory.getLogger(ScheduleRoute.class);
    
    @Autowired
    LabScheduleListener scheduleListener;

    @Override
    public void configure() throws Exception {
        from("quartz2://lab/hl7v2/client/schedule?cron=*/1+*+*+*+*+?&trigger.timeZone=+8 UTC").routeId("labScheduleRoute")
        .process(new Processor() {
            @Override
            public void process(Exchange exchange) throws Exception {
                LOG.debug("Keep your exchange business here");
            }
        })
        .threads(1, 10).multicast()
        .bean(this.scheduleListener).log("lab/hl7v2/client/schedule");
    }
}

Handler

package org.chorke.academia.java.mllp.engine.beans.listener;

import org.apache.camel.Exchange;
import org.apache.camel.ExchangeException;
import org.apache.camel.Handler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;

@Component
public class LabScheduleListenerImpl implements LabScheduleListener {
    private static final Logger LOG = LoggerFactory.getLogger(LabScheduleListenerImpl.class);
    
    @Handler
    @Override
    public void listen(@ExchangeException Exception exception, Exchange exchange) throws Exception {
        LOG.info("Keep your LAB schedule business here");
    }
}

References