gpt4 book ai didi

java - 尝试resttemplate getforobject时出现404错误

转载 作者:行者123 更新时间:2023-12-02 01:17:11 24 4
gpt4 key购买 nike

我有目录服务,它与产品服务一起获取数据(微服务)。当我尝试在目录服务中创建 getForObject 时,出现错误 404。

    @RestController
@RequestMapping("/catalog")
public class ProductCatalogApi {
@Autowired
private RestTemplate restTemplate;

@GetMapping("")
public String hello(){
return "Heelloooo";
}

@GetMapping("/{category}")
public void getProductsByCategoryName(@PathVariable String category) {
UserProduct userProduct = restTemplate.getForObject(
"http://shop-product-service/shop/products" + category,
UserProduct.class);
System.out.println("dsdasa--------"+ userProduct);
}

这是我的产品服务:

    @RestController
@RequestMapping("/shop")
public class ProductController {
@Autowired
ProductRepository productRepository;

@GetMapping("/all")
public List<Product> index(){
return productRepository.findAll();
}

@GetMapping("/product/{id_product}")
public Optional<Product> showByProductId(@PathVariable String id_product){
return productRepository.findById(id_product);
}

@GetMapping("/products/{category}")
public List<Product> showByCategoryName(@PathVariable String category){
return productRepository.findByCategory(category);
}

}

所以当我尝试建立链接时:http://localhost:8082/catalog/electronics ,我收到错误,请帮助我。

最佳答案

您在 ProductCatalogApi 类中丢失了字符“/”:

restTemplate.getForObject("http://shop-product-service/shop/products "+ 类别, UserProduct.class);

http://shop-product-service/shop/products => http://shop-product-service/shop/products/

关于java - 尝试resttemplate getforobject时出现404错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58364525/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com