對於Postman或其他沒有Content-Type集的調用,在Spring中設置方法簽名的必要條件是什麼?調用未設置內容類型的Spring端點
的簽名是:
@RequestMapping(value = "/{id}", method = RequestMethod.GET, produces = "application/json")
@ResponseBody
public ResponseEntity getHouseholdChanges (@PathVariable("id") Long id) { ... }
當我叫郵差沒有Content-Type的我收到415個狀態。
我需要從別人的電話,當我不能設置內容類型,但始終是相同的這種方法。
我無法用spring-boot 1.5.6.RELEASE重現此問題。你正在運行什麼版本的彈簧引導? –
春天版本:4.3.0.RC2和春季啓動版本:1.4.0.M3 –