6

我在将 JSON 解析为 Date 对象时遇到问题。

我使用 Jersey 1.14,Tomcat 7。

我的资源类:

    @Path("/user")
    @Produces(MediaType.APPLICATION_JSON)
    public class UserResource {
        @Path("/~/update")
        @POST
        @Consumes(MediaType.APPLICATION_JSON)
        public Response updateUser(User user) {
            // There are update in DB
            // but Date field always null
            return Response.ok().build();
        }
        @Path("/~/get")
        @GET
        public User getUser() {
            // There are I fetch User from DB
            // Works fine, User instance returns in correct JSON
            return user;
        }

    }

我的模型:

    @XmlAccessorType(XmlAccessType.NONE)
    @XmlRootElement(name = "user")
    public class User {
        @XmlElement(name = "name")
        private String name;
        @XmlElement(name = "myDate")
        @XmlJavaTypeAdapter(DateAdapter.class)
        private Date myDate;
        // Getters and Setters
        public String getName() {
            return name;
        }
        public void setName(String name) {
            this.name = name;
        }
        public Date getMyDate() {
            return myDate;
        }
        public void setMyDate(Date myDate) {
            this.myDate = myDate;
        }
    }

我的日期类 XmlAdapter:

    public class DateAdapter extends XmlAdapter<String, Date> {

        private static final SimpleDateFormat dateFormat = new SimpleDateFormat(
        "yyyy-MM-dd");

        @Override
        public String marshal(Date v) {
            return dateFormat.format(v);
        }

        @Override
        public Date unmarshal(String v) {
            try {
                return dateFormat.parse(v);
            } catch (ParseException e) {
                throw new WebApplicationException();
            }
        }
    }

为什么在我的 POST 方法中始终为空 Date 字段?我试图发送的这个 JSON:

{"name":"Peter","myDate":"1988-05-31"}

PS对不起我的英语不好。

UPD。 我的客户代码:

    public class Tester {

        public static void main(String... args) throws FileNotFoundException, JSONException {

            Client c = Client.create();
            WebResource r = c.resource("http://localhost:8080/myapp/user/~/get");
            ClientResponse resp = r.get(ClientResponse.class);
            JSONObject entity = resp.getEntity(JSONObject.class);
            entity.remove("myDate");
            entity.put("myDate", "1988-05-31");
            r = c.resource("http://localhost:8080/myapp/user/~/update");
            resp = r.entity(entity, MediaType.APPLICATION_JSON).post(ClientResponse.class);
            entity = resp.getEntity(JSONObject.class);
            System.out.println(entity);
        }
    }     

UPD 2。

我在我的应用程序中发现了一个非常愚蠢的错误。相反java.util.Date我在我的模型类中使用了java.sql.Date :(
这就是为什么 Date 字段总是为空的。

4

2 回答 2

2

您的服务器代码是正确的。错误在您的客户端代码中:

resp = r.entity(entity, MediaType.APPLICATION_JSON).post(ClientResponse.class);

应该:

resp = r.type(MediaType.APPLICATION_JSON).post(ClientResponse.class,entity);
于 2012-11-29T07:55:00.230 回答
-2

您必须序列化/反序列化日期,或者您必须制作日期字符串。

private String myDate;
于 2012-11-28T18:26:17.767 回答