Skip to content

Instantly share code, notes, and snippets.

@chathurangat
Created March 18, 2018 04:06
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 chathurangat/531c04ef40c4e7b95e73429de17ddefe to your computer and use it in GitHub Desktop.
Save chathurangat/531c04ef40c4e7b95e73429de17ddefe to your computer and use it in GitHub Desktop.
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
@EnableZuulProxy
@EnableDiscoveryClient
@SpringBootApplication
public class ZuulProxyApplication {
public static void main(String[] args) {
SpringApplication.run(ZuulProxyApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment