Skip to content

Instantly share code, notes, and snippets.

View ulan-yisaev's full-sized avatar
💭
Learning

Ulan Yisaev ulan-yisaev

💭
Learning
  • Nortal AS
  • Estonia
View GitHub Profile
@ulan-yisaev
ulan-yisaev / spring-boot-cheatsheet.java
Created January 13, 2020 02:37 — forked from jahe/spring-boot-cheatsheet.java
Spring Boot Cheatsheet
// Enable component-scanning and auto-configuration with @SpringBootApplication Annotation
// It combines @Configuration + @ComponentScan + @EnableAutoConfiguration
@SpringBootApplication
public class FooApplication {
public static void main(String[] args) {
// Bootstrap the application
SpringApplication.run(FooApplication.class, args);
}
}