Skip to content

Instantly share code, notes, and snippets.

View kiran11k's full-sized avatar

Kiran Kollipara kiran11k

  • Curriculum Associates
  • Austin, TX
View GitHub Profile
@kiran11k
kiran11k / build.gradle
Created January 29, 2019 06:13
Copy Gradle Dependencies into Folder
plugins {
id 'java'
}
group 'com.tm'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
@kiran11k
kiran11k / spring-boot-cheatsheet.java
Created October 5, 2018 16:21 — 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);
}
}