Skip to content
Snippets Groups Projects

ProductDetailClient

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by flecno
    Edited
    ProductDetailClient.java 239 B
    @FeignClient(url = "https://www.frontlineshop.com/api")
    public interface ProductDetailClient {
    
        @RequestMapping(method = RequestMethod.GET, value = "/product/{id}")
        ProductDetailResponse getProduct(@PathVariable("id") String id);
    }
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment