Skip to content

Instantly share code, notes, and snippets.

@mzimecki
Created April 22, 2017 14:29
Show Gist options
  • Save mzimecki/ef4cde6a5b8b205ea55f31d108d29a95 to your computer and use it in GitHub Desktop.
Save mzimecki/ef4cde6a5b8b205ea55f31d108d29a95 to your computer and use it in GitHub Desktop.
[medium] Spring Boot application
@SpringBootApplication
@EnableAutoConfiguration
@ComponentScan(value = "com.mzimecki.camel.spring")
public class ServiceLauncher {
public static void main(String[] args) {
SpringApplication.run(ServiceLauncher.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment