Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@chathurangat
Last active March 11, 2018 08:26
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/752460f4bb20a503f4bf85a0f854c8e4 to your computer and use it in GitHub Desktop.
Save chathurangat/752460f4bb20a503f4bf85a0f854c8e4 to your computer and use it in GitHub Desktop.
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
@EnableZuulProxy
@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