문제이번 과제에서 처리된 서비스의 서버 포트를 응답 헤더에 담으라는 요구사항이 있었다. @Slf4j@RestController@RequiredArgsConstructor@RequestMapping("/products")public class ProductController { private final ProductService productService; @Value("${server.port}") private String port; /** * 상품 목록 조회 API */ @GetMapping public ResponseEntity> getProductList(GetProductsReq request, Pageable pageable) { Li..
springgateway
문제spring: main: web-application-type: reactive # Spring 애플리케이션이 리액티브 웹 애플리케이션으로 설정됨 application: name: gateway-service # ...2024-08-10T14:06:47.934+09:00 ERROR 63786 --- [gateway-service] [ctor-http-nio-2] i.n.r.d.DnsServerAddressStreamProviders : Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. This may result in incorrect DN..