Spring REST使用Date字段获取对象

时间:2015-06-11 08:21:02

标签: java spring jackson resttemplate

我正在和Jackson一起使用Spring RestTemplate。

我正在尝试将包含在对象内的参数列表发送到带有GET请求的控制器,但只要Date字段存在,我就会继续收到400错误。

这是我要发送的对象:

public class UserPmVpxpServiceDTO implements GenericDTO {
    private static final long serialVersionUID = 1L;
    private String codeCli;
    private String soapPassword;
    private Date expiryDate;
    private String soapServer;
    private Boolean status;

    public UserPmVpxpServiceDTO() {
    }

    @JsonCreator
    public UserPmVpxpServiceDTO(@JsonProperty("codeCli") final String codeCli,
                                @JsonProperty("soapPassword") final String soapPassword,
                                @JsonProperty("expiryDate") final Date expiryDate,
                                @JsonProperty("soapServer") final String soapServer,
                                @JsonProperty("status") final Boolean status) {
        this.codeCli = codeCli;
        this.soapPassword = soapPassword;
        this.expiryDate = expiryDate;
        this.soapServer = soapServer;
        this.status = status;
    }
    // getters and setters
}

这是我发送的请求

final UriComponentsBuilder path = UriComponentsBuilder.fromUriString(PMPCG_URL).path(UrlMap.PCG_GET_PAY_INFO);
path.queryParam("codeCli", userPmVpxpServiceDTO.getCodeCli());
path.queryParam("soapPassword", userPmVpxpServiceDTO.getSoapPassword());
path.queryParam("expiryDate", userPmVpxpServiceDTO.getExpiryDate());
path.queryParam("soapServer", userPmVpxpServiceDTO.getSoapServer());
path.queryParam("status", userPmVpxpServiceDTO.getStatus());
final URI uriPcg = path.buildAndExpand(id).toUri();
return restTemplate.getForObject(uriPcg.toString(), PayInfoDTO.class, userPmVpxpServiceDTO);

这是应该接收它的控制器

@RestController
public class VpsPayController {

    @RequestMapping(value = UrlMap.PCG_GET_PAY_INFO, method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
    @ResponseStatus(HttpStatus.OK)
    public PayInfoDTO getPayInfo(final UserPmVpxpServiceDTO userPmVpxpServiceDTO, @PathVariable final String id) throws RemoteException, ServiceException {
        // my code
    }
}

如果我没有发送expiryDate字段,它可以完美地工作。

这是生成的网址无效的示例

/vpspay/get-payinfo/myid?codeCli=A465&soapPassword=myPass&expiryDate=Tue%2520Dec%252031%252000:00:00%2520CET%25202999&soapServer=https://111.111.11.11:7654&status=true

这相反起作用

/vpspay/get-payinfo/myid?codeCli=A465&soapPassword=myPass&soapServer=https://111.111.11.11:7654&status=true

我试图将日期作为Long传递但没有成功。

2 个答案:

答案 0 :(得分:1)

它将更干净,而不是使用Date来使用时间戳。简单地说,它们是用数字表示日期。 看到链接:http://www.unixtimestamp.com/而不是发送日期将发送到服务器一个长号。

答案 1 :(得分:0)

我相信如果没有指定转换器,Spring将最终调用不推荐使用的Date构造函数,它将String作为参数将输入字符串转换为Date对象。

尝试以此格式传递日期' 11/12/2012 16:50 PM'