Web アプリケーション (REST、Spring、JPA Hibernate) でブール値を HTTP 応答として返そうとしています。コードは次のとおりです。
@ResponseBody
@RequestMapping(value="/movieTheater", method=RequestMethod.GET)
public boolean getCustomerInput(Map<String, Double> input) {
return transactionService.addTransaction(input);
}
さて、これはブール値を返すことを許可していないと思いますが、何か他のものを期待しています。ブラウザで次のようにアクセスしようとすると:
http://localhost:8081/SpringMVCMerchant/movieTheater.htm
次のエラーが表示されます。
HTTP Status 406 -
type Status report
message
description The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.
ブール値をレスポンスとして送信する方法を教えてください。そうでない場合、他に何ができますか?前もって感謝します!