Skip to content

Instantly share code, notes, and snippets.

@seyedsahil
Last active October 25, 2021 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seyedsahil/6b399373943c928bafa2c2109272b672 to your computer and use it in GitHub Desktop.
Save seyedsahil/6b399373943c928bafa2c2109272b672 to your computer and use it in GitHub Desktop.
Enabling Eureka Server
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment