build.gadle 에 netflix-zuul 추가
implementation("org.springframework.cloud:spring-cloud-starter-netflix-zuul")
WebApplication.kt에 annotation 추가
@EnableZuulProxy
application.yml에 zuul routes 추가
zuul:
routes:
user-api:
path: /user/**
url: http://api.com
stripPrefix: true
/users/** 로 들어오는 응답을 api.com으로 응답을 보내고 받는다.
stripPrefix 옵션은 path 부분을 잘라서 보낼지 여부이다.
'Programming > Springboot' 카테고리의 다른 글
[SpringBoot] spring cloud gateway - 1 (0) | 2023.07.15 |
---|---|
[springboot/jpa] jpa crud example 2 (0) | 2020.10.26 |
[springboot/jpa] jpa crud example 1 (0) | 2020.10.26 |
[springboot] junit4 + controller test [mockMvc] (0) | 2020.03.27 |
[springboot] @autowired 안에서 @value로 호출한 값 못 읽을때 (0) | 2019.03.13 |