私は以下のようなJSONを持っています
{
"userName" : "FOOO",
"createdDate" : "2014-10-16"
}
私はSpring CoucheベースAPIを使用しており、次のようにBeanを作成しています
@Document
public class MBean
{
@Id
private String userName;
@Field
private java.util.Date createDate;
//Getters and Setters for above 2 instance variables
}
RestClient を使用して REST 呼び出しを実行しようとすると、JSON (2014-10-16) の createdDate データが Bean クラスのインスタンス変数「createDate」に取り込まれません。
http://docs.spring.io/spring-data/couchbase/docs/1.1.0.RC1/reference/htmlsingle/では、自動変換が行われると書かれていますが、私にとってはうまくいきません。