Opinionated Apache Camel tailored for HIE. Learn about Apache Camel from our Camel primer on the DHIS2 Developer Portal.
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);
}
}