最初我的呼叫休息服务的请求对象是: -
public class RequestParamDto {
private String tokenID;
private String taxID;
private String affiliateID;
private long planID;
private String participantId;
private String[] participantIdArr;
}
和相应的JSON请求对象是: -
{
"tokenID": "12356446",
"taxID": "123456",
"planID": 123456,
"affiliateID": "7876675901282905002"
}
我在POSTMAN CLIENT的标题部分传递了一些参数 -
x-username:abc126
x-enterpriseid:F1111
x-uniqueid:4T5646464
x-ris-audienceview:emplabc
Content-Type:application/json
Accept:application/json
以上请求与POSTMAN CLIENT一起正常工作。
现在我的请求对象包含自定义对象列表。它将如下所示:
public class ContributionsRequestParamDto {
private String tokenID;
private String taxID;
private String affiliateID;
private long planID;
private String accountNumber;
private String bankAccountNumber;
private String transitId;
private BigDecimal eftAmt;
private Date ppeDate;
private String taxYear;
private Short planType;
private List<ParticipantsDeferralDto> participantsDeferrals;
private List<EmployersContributionDto> employersContributions;
}
及其对应的JSON请求对象是:
{
"tokenID" : "123456789",
"taxID" : "123456",
"affiliateID" : "123456789",
"planID" : 123456,
"ppeDate" : "2017-10-24",
"taxYear" : "2017",
"planType" : 1,
"participantsDeferrals" : [ {
"taxId" : "555555",
"participantDeferralAmt" : 22.00
} ],
"employersContributions" : [ {
"taxId" : "555555",
"employerContributionAmt" : 22.00
} ]
}
对于上述请求,我在标题部分传递相同的参数。
我收到Error 405: Request method 'POST' not supported
错误。我正尝试使用http://api100.abc.xyz.com:9080/abcd/api/sscws/v1/saveContributions
网址点击此请求。我对这个请求做错了什么或者我错过了什么?
谢谢!
编辑 - 我想要调用的REST函数是 -
@Transactional
@RestController
@RequestMapping("/v1")
@Api(value="v1", description="")
public class SscRestController {
@RequestMapping(value="/saveContributions",
method=RequestMethod.POST, produces={MediaType.APPLICATION_JSON_VALUE}, consumes={MediaType.APPLICATION_JSON_VALUE})
@ApiOperation(value="Returns the saved contributions object")
public String saveContributions(@RequestBody ContributionsRequestParam contributionsParam) throws Exception {
return "success";
}
}
答案 0 :(得分:0)
405错误只是说端点不接受带有指定Http方法的请求。在你的情况下,它是POST。
请验证REST端点是否正在侦听具有给定内容类型的POST方法。
此错误与JSON对象的复杂性无关。
答案 1 :(得分:0)
也许它是一个错字或者我错了,但你有ContributionsRequestParam Dto 作为dto你想接受,但你的端点方法saveContributions(..)将ContributionsRequestParam作为@ RequestBody
答案 2 :(得分:0)
在“ContributionsRequestParamDto.java”中,我已将ppeDate声明为Date。我把它改成了String,它对我有用。