Skip to content

Instantly share code, notes, and snippets.

View faridlab's full-sized avatar
🍀
Luck is the only skill

Farid Hidayat faridlab

🍀
Luck is the only skill
View GitHub Profile
@faridlab
faridlab / gist:e793c80b1619a3ee767c595a36d3adf7
Created July 19, 2021 03:18 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@faridlab
faridlab / spring-boot-cheatsheet.java
Created August 27, 2021 15:27 — 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);
}
}