使用JAX-RS和java.time.LocalDate
(java8)的问题。
我想使用JSON将这样的对象传递给JAX-RS方法:
Person {
java.time.LocalDate birthDay;
}
我得到的例外是:
com.fasterxml.jackson.databind.JsonMappingException
:没有为类型[simple type,classjava.time.LocalDate
]找到合适的构造函数:无法在[来源:{{1]从JSON对象实例化(需要添加/启用类型信息?) }}; line:2,column:3]
如何创建某种将json-dates映射到io.undertow.servlet.spec.ServletInputStreamImpl@21cca2c1
的拦截器?我尝试实现了java.time.LocalDate
,但如果MessageBodyReader
是另一个类中的字段,我必须为每个持有{{{}的类写LocalDate
1}}(据我所知)。
(Java EE7(仅使用javaee-api,不需要任何第三方依赖),JAX-RS,Java 8,Wildfly 8.2)
有什么建议吗?
答案 0 :(得分:23)
通常我会说要为Jackson编写一个Serializer / Deserializer,但由于你不需要任何其他依赖,你可以使用JAXB解决方案。 Jackson(带有Resteasy)支持JAXB注释。所以我们能做的就是写一个XmlAdapter
来从String转换为LocalDate
。一个例子就像是
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class LocalDateAdapter extends XmlAdapter<String, LocalDate> {
@Override
public LocalDate unmarshal(String dateString) throws Exception {
return LocalDate.parse(dateString, DateTimeFormatter.ISO_DATE);
}
@Override
public String marshal(LocalDate localDate) throws Exception {
return DateTimeFormatter.ISO_DATE.format(localDate);
}
}
你可以选择你想要的任何格式,我只使用DateTimeFormatter.ISO_DATE
,它基本上会寻找这种格式(2011-12-03)。
然后您需要做的就是为该类型的getter注释该字段
public class Person {
private LocalDate birthDate;
@XmlJavaTypeAdapter(LocalDateAdapter.class)
public LocalDate getBirthDate() { return birthDate; }
public void setBirthDate(LocalDate birthDate) {
this.birthDate = birthDate;
}
}
如果您不想使用此注释混淆模型类,则可以在包级别声明注释。
在与模型类相同的包中的package-info.java
文件中,添加此
@XmlJavaTypeAdapters({
@XmlJavaTypeAdapter(type = LocalDate.class,
value = LocalDateAdapter.class)
})
package thepackage.of.the.models;
import java.time.LocalDate;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapters;
@Path("/date")
public class DateResource {
@POST
@Consumes(MediaType.APPLICATION_JSON)
public Response postPerson(Person person) {
return Response.ok(DateTimeFormatter.ISO_DATE.format(
person.getBirthDate())).build();
}
}
@Test
public void testResteasy() throws Exception {
WebTarget target = client.target(
TestPortProvider.generateURL(BASE_URI)).path("date");
String person = "{\"birthDate\":\"2015-01-04\"}";
Response response = target.request().post(Entity.json(person));
System.out.println(response.readEntity(String.class));
response.close();
}
结果:2015-01-04
同样对于Jackson(我知道OP表示没有依赖关系,但这是针对其他人的),您可以使用jackson-datatype-jsr310模块。查看完整解决方案here