0
我已經看到了很多的代碼,使用這種方法getForObject()
,在該方法的最後需要URI和替換的東西{}
與數字。
我的問題是:究竟是什麼http://localhost:8080/spring-rest/foos
?它是某種文件嗎?在這種情況下它會是什麼樣子?
我已經看到了很多的代碼,使用這種方法getForObject()
,在該方法的最後需要URI和替換的東西{}
與數字。
我的問題是:究竟是什麼http://localhost:8080/spring-rest/foos
?它是某種文件嗎?在這種情況下它會是什麼樣子?
在您的例子:
Foo foo = restTemplate.getForObject(URI, Foo.class, "1");
實際上是試圖讓一個HTTP請求的REST資源。
在幕後:
http://localhost:8080/sping-rest/foos/1
http://localhost:8080/sping-rest/foos/1
{"id":1,"content":"Hello, World!"}
該spring.io網站lists a lot of guides,你一定要檢查出來!甚至有一個"Consuming a RESTful web service"指南。