티스토리 뷰



spring boot에 zuul 설정하기 

  • pom.xml zuul module 설정
  • application 에 zuul proxy 설정
  • zuul routes 설정

pom.xml zuul module 설정



    org.springframework.cloud
    spring-cloud-starter-zuul
    1.4.6.RELEASE


zuul routes 설정

@EnableZuulProxy
@SpringBootApplication
public class MyApplication 

zuul routes 설정

zuul:
  routes:
    tistory: 
      sensitiveHeaders:
      path: /tisotry/**
      url: http://come2misun.tistory.com/ 
댓글