Skip to content

Opinionated Apache Camel tailored for health information exchange

Notifications You must be signed in to change notification settings

dhis2/camel-hie-boot

Repository files navigation

Camel HIE Boot

Opinionated Apache Camel tailored for HIE. Learn about Apache Camel from our Camel primer on the DHIS2 Developer Portal.

Getting started

Bootstrap your Java integration with Camel HIE by extending the app main class from org.hisp.hieboot.CamelHieBootApp like so:

package org.example;

import org.hisp.hieboot.CamelHieBootApp;
import org.springframework.boot.SpringApplication;

public class Main extends CamelHieBootApp {

    public static void main(String[] args) {
        SpringApplication.run(Main.class, args);
    }
}