Skip to content

Instantly share code, notes, and snippets.

@finsterthecat
Created January 10, 2018 16:07
Show Gist options
  • Save finsterthecat/569f2705970af1006015b77da75603d2 to your computer and use it in GitHub Desktop.
Save finsterthecat/569f2705970af1006015b77da75603d2 to your computer and use it in GitHub Desktop.
package io.navan.heroesbackend;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration;
@SpringBootApplication(exclude = RepositoryRestMvcAutoConfiguration.class)
public class HeroesBackendApplication {
public static void main(String[] args) {
SpringApplication.run(HeroesBackendApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment