Created
January 10, 2018 16:07
-
-
Save finsterthecat/569f2705970af1006015b77da75603d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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