MOXy JAXB javax.xml.bind.PropertyException

前端之家收集整理的这篇文章主要介绍了MOXy JAXB javax.xml.bind.PropertyException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我按照这个例子: http://wiki.eclipse.org/EclipseLink/Examples/MOXy/JSON_Twitter

现在我有这个课:

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.transform.stream.StreamSource;

import org.eclipse.persistence.jaxb.MarshallerProperties;

public class Demo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Foo.class);

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        unmarshaller.setProperty("eclipselink.media-type","application/json");
        unmarshaller.setProperty("eclipselink.json.include-root",false);
        StreamSource source = new StreamSource("http://test.url/path/to/resource");
        JAXBElement<Foo> jaxbElement = unmarshaller.unmarshal(source,Foo.class);

        System.out.println(jaxbElement.getValue().getFoo());

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT,true);
        marshaller.setProperty(MarshallerProperties.MEDIA_TYPE,"application/json");
        marshaller.setProperty("eclipselink.json.include-root",false);
        marshaller.marshal(jaxbElement,System.out);
    }
}

我有jaxb.properties:

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

如果我运行此代码,我得到:

Exception in thread "main" javax.xml.bind.PropertyException: name: eclipselink.media-type value: application/json
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.setProperty(AbstractUnmarshallerImpl.java:352)
    at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.setProperty(UnmarshallerImpl.java:450)
    at com.example.JavaSEClient.main(JavaSEClient.java:19)

我怎样才能解决这个问题?

搜索了SO和Google,这些答案都不起作用:

PropertyException when setting Marshaller property with eclipselink.media-type value: application/json
JAXB javax.xml.bind.PropertyException

解决方法

您需要确保您的jaxb.properties文件与用于引导JAXBContext的域类位于同一个包中,并且EclipseLink MOXy位于类路径上.

> http://blog.bdoughan.com/search/label/jaxb.properties

如果您使用的是Maven,则jaxb.properties文件应位于以下位置,假设Foo位于名为com.example.Foo的包中:

> src / main / resources / com / example / foo / jaxb.properties
> src / main / java / com / example / foo / Foo.class

有关完整示例,请参阅:

> https://github.com/bdoughan/blog20110819

原文链接:https://www.f2er.com/java/239969.html

猜你在找的Java相关文章