Udemy 課程Microservices with Spring 2
新增一個Get的service:
對應新增回傳的HelloWorldBean
執行RestfulWebServicesApplication將服務帶起來
進到URL:http://localhost:8089/hello-world-bean見到以下
這個Error的問題主要原因是我們的HelloWorldBean內缺少getter
spring會依據getter來自動轉換這個服務的回傳值
所以補上getter相關語法
再次執行得:
數值被轉換成json格式!!(Spring透過getter將值轉成json!!)