컨트롤러에 매핑된 URI 템플릿이 알맞지 않다 라는 오류
보통 @PathVariable 에 의해 일어남.
요거를
public interface ProductCompositeService {
/**
* curl 호스트:포트/product-composite/1
* @param productId
* @return
*/
@GetMapping(value = "/product-composite/{productId}",produces = "application/json")
ProductAggregate getProduct(@PathVariable("prodcutId") int productId);
}
@PathVarible에 맵핑될 경로변수와 파라미터를 잘 지정해주자.
public interface ProductCompositeService {
/**
* curl 호스트:포트/product-composite/1
* @param productId
* @return
*/
@GetMapping(value = "/product-composite/{productId}",produces = "application/json")
ProductAggregate getProduct(@PathVariable("productId") int productId);
}
'작업하면서 배우는 것들' 카테고리의 다른 글
Uncaught ReferenceError: regeneratorRuntime is not defined (0) | 2020.12.23 |
---|---|
Intelli J 에서 .http 파일 사용 (0) | 2020.12.23 |
ObjectMapper 에서 Long 이나 Integer 등 Wrapper 타입 맵핑이 안됨 (0) | 2020.12.22 |
Zipkin 에 서비스가 등록되지 않아 로그 트레이싱이 안 될 때 (0) | 2020.12.22 |
Sleuth 사용 중 커멘드라인이 너무 길다는 메시지 (0) | 2020.12.22 |