- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有目录服务,它与产品服务一起获取数据(微服务)。当我尝试在目录服务中创建 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/
我的休息服务请求: Price[] prices = restTemplate.getForObject("https://sbk02.test.sparebank1.no/sbk/rest/poc1
自定义类结构 DocumentListVO 与 JSON 响应一对一映射,但是在使用 DocumentListVO dv1 =restTemplate.getForObject(uri,Documen
我正在编写一个简单的 REST 客户端,我的服务类有一个使用的方法 RestTemplate.getForObject() 我想练习测试,但我真的不知道我们是否应该测试类(class)。我也不知道如何
自定义类结构 DocumentListVO 与 JSON 响应一对一映射,但是在使用 DocumentListVO dv1 =restTemplate.getForObject(uri,Documen
2018 年 2 月 5 日更新(大约 4 年后)...我再次对此进行了测试,因为人们一直在支持我的问题/答案,而 Sotirios Delimanolis 是正确的,我不应该写我的答案中的代码来完成
我正在尝试从“https://swapi.co/api/people/?format=json ”获取数据并使用 RestTemplate.getForObject() 方法将其放入 POJO 中。我
为了编写干净智能的代码,我想知道我可以做些什么来改进我的实际代码: public JSONObject getCustomer(final String customerId) { if (c
我同时使用了 entity()、exchange()、getforObject(),一切似乎都运行良好。但不确定哪种方法适合不同的场景。请提供有关每种方法的更多信息,例如优缺点,在哪里使用哪里不使用。
我想使用restTemplate.getForObject方法,并且当所有请求的响应JSON键都相同时,我已经让它工作了。然后我使用了 @JsonProperty 注释,一切正常。 但现在我有一个响应
我是 Spring 的新手。我正在编写尝试使用 restTemplate.getForObject 传递 header 的代码 客户端: String userServiceUrl = "http:/
我会在 RestService 中为所有类型的 URI 和 VO 创建一个“通用” get() 。 但我不知道如何定义(并使用它)一个参数来创建通用 get(uri, className)。我试过这个
我想将以下 json 解析为 java 类: { "coord": { "lon": 5, "lat": 51 }, "weather": [ { "i
我在服务器端有一个方法可以提供有关在我的数据库中注册的特定名称的信息。我正在从我的 Android 应用程序访问它。 对Server的请求正常完成。我想要做的是根据我想要获得的名称将参数传递给服务器。
我在 Spring MVC Controller 中有一个简单的 REST 方法,如下所示,其签名为: @RequestMapping(value="/person/{personId}", meth
我正在尝试向 Api Rest 发出获取请求,但我总是收到 404,不过,如果尝试在浏览器或 postMan 中复制 queryUrl,它会完美运行。 restTemplate.getForObjec
我正在使用 Spring 的 RestTemplate 访问 Web 服务,并获取以下堆栈跟踪: Exception in thread "main" org.springframework.http
如何使用 jmockit 模拟 RestTemplate 类中的 getForObject 方法 - 我正在尝试这样做 - @Test public void test2DataClie
在我的浏览器中,以下 rest API url 正在运行,我可以看到 XML 结果。 "http://V7846EKZZJ1OJAW486D66IS7GO24XKUZ@localhost:8090/p
我创建了以下简单测试来查询 iTunes: @Test fun loadArtist() { val restTemplate = RestTemplate() val builder
我已经使用了这个答案中的解决方案: Get list of JSON objects with Spring RestTemplate它工作得很好。它完全符合我的需要。 ProcessDefiniti
我是一名优秀的程序员,十分优秀!