Skip to content

Instantly share code, notes, and snippets.

@odedia
Created November 19, 2017 19:27
Show Gist options
  • Select an option

  • Save odedia/08cf46fc0dbb9f5950c393384547fc68 to your computer and use it in GitHub Desktop.

Select an option

Save odedia/08cf46fc0dbb9f5950c393384547fc68 to your computer and use it in GitHub Desktop.
package com.odedia.springsession.eureka;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment