Skip to content

Instantly share code, notes, and snippets.

View cignextraining's full-sized avatar

cignextraining

View GitHub Profile
@cignextraining
cignextraining / Application.java
Created April 22, 2018 12:29
Application Starter File - Spring Integration
package com.cd.spring;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ImportResource;
@SpringBootApplication
@ImportResource("/int-config/integration.xml")
public class Application {