Guest User

Untitled

a guest
Jan 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package io.navan.heroesbackend;
  2.  
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. import org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration;
  6.  
  7. @SpringBootApplication(exclude = RepositoryRestMvcAutoConfiguration.class)
  8. public class HeroesBackendApplication {
  9.  
  10. public static void main(String[] args) {
  11. SpringApplication.run(HeroesBackendApplication.class, args);
  12. }
  13. }
Add Comment
Please, Sign In to add comment