Skip to content

Instantly share code, notes, and snippets.

View upgundecha's full-sized avatar
💭
Busy

Unmesh Gundecha upgundecha

💭
Busy
View GitHub Profile
@upgundecha
upgundecha / 0_reuse_code.js
Created March 13, 2017 15:59
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@upgundecha
upgundecha / spring-boot-cheatsheet.java
Created December 1, 2016 18:36 — 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);
}
}