首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >没有@XmlElementDecl的ObjectFactory

没有@XmlElementDecl的ObjectFactory
EN

Stack Overflow用户
提问于 2012-08-22 13:31:19
回答 3查看 17.1K关注 0票数 0

要在GlassFish服务器开放源代码版本3.1.1 (构建12)中部署:

由: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException::java.security.PrivilegedActionException 1计数IllegalAnnotationExceptions引起,元素{http://www.w3.org/2004/08/xop/include}Include没有带有@XmlElementDecl的ObjectFactory。此问题与以下位置有关:位于受保护的ru.gosuslugi.smev.rev120315.ReferenceType.content at ru.gosuslgi.smov.rev120315. related at public javax.xml.bind.JAXBElement ru.gosuslugi.smev.rev120315.ObjectFactory.createReference(ru.gosuslugi.smev.rev120315.ReferenceType) at ru.gosuslgi.smov.rev120315。在受保护的java.util.List ru.gosuslugi.smev.rev120315.AppDataType.any at ru.gosuslgi.smov.rev120315.AppDataType在受保护的ru.gosuslgi.smv.rev120315. at at ru.gosuslgi.smv.rev120315.位于受保护的ru.gosuslgi.smv.rev120315.MessageDataType ru.gosuslgi.smv.rev120315.BaseMessageType.messageData at ru.gosuslgi.smv.rev120315.baseMessageType

资料来源:

src/org/w3/_2004/_08/xop/include/Include.java

代码语言:javascript
复制
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.08.22 at 04:13:30 PM MSK 
//


package org.w3._2004._08.xop.include;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;


/**
 * <p>Java class for Include complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="Include">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;any namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
 *       &lt;/sequence>
 *       &lt;attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       &lt;anyAttribute namespace='##other'/>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Include", propOrder = {
    "any"
})
public class Include {

    @XmlAnyElement(lax = true)
    protected List<Object> any;
    @XmlAttribute(name = "href", required = true)
    @XmlSchemaType(name = "anyURI")
    protected String href;
    @XmlAnyAttribute
    private Map<QName, String> otherAttributes = new HashMap<QName, String>();

    /**
     * Gets the value of the any property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the any property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getAny().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link Object }
     * 
     * 
     */
    public List<Object> getAny() {
        if (any == null) {
            any = new ArrayList<Object>();
        }
        return this.any;
    }

    /**
     * Gets the value of the href property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getHref() {
        return href;
    }

    /**
     * Sets the value of the href property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setHref(String value) {
        this.href = value;
    }

    /**
     * Gets a map that contains attributes that aren't bound to any typed property on this class.
     * 
     * <p>
     * the map is keyed by the name of the attribute and 
     * the value is the string value of the attribute.
     * 
     * the map returned by this method is live, and you can add new attribute
     * by updating the map directly. Because of this design, there's no setter.
     * 
     * 
     * @return
     *     always non-null
     */
    public Map<QName, String> getOtherAttributes() {
        return otherAttributes;
    }

}

org/w3/_2004/_08/xop/include/ObjectFactory.java

代码语言:javascript
复制
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.08.22 at 04:13:30 PM MSK 
//


package org.w3._2004._08.xop.include;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;


/**
 * This object contains factory methods for each 
 * Java content interface and Java element interface 
 * generated in the org.w3._2004._08.xop.include package. 
 * <p>An ObjectFactory allows you to programatically 
 * construct new instances of the Java representation 
 * for XML content. The Java representation of XML 
 * content can consist of schema derived interfaces 
 * and classes representing the binding of schema 
 * type definitions, element declarations and model 
 * groups.  Factory methods for each of these are 
 * provided in this class.
 * 
 */
@XmlRegistry
public class ObjectFactory {

    private final static QName _Include_QNAME = new QName("http://www.w3.org/2004/08/xop/include", "Include");

    /**
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3._2004._08.xop.include
     * 
     */
    public ObjectFactory() {
    }

    /**
     * Create an instance of {@link Include }
     * 
     */
    public Include createInclude() {
        return new Include();
    }

    /**
     * Create an instance of {@link JAXBElement }{@code <}{@link Include }{@code >}}
     * 
     */
    @XmlElementDecl(namespace = "http://www.w3.org/2004/08/xop/include", name = "Include")
    public JAXBElement<Include> createInclude(Include value) {
        return new JAXBElement<Include>(_Include_QNAME, Include.class, null, value);
    }

}
EN

回答 3

Stack Overflow用户

回答已采纳

发布于 2012-08-22 14:09:36

当从XML生成JAXB模型时,我总是建议使用生成模型的包名创建JAXBContext

代码语言:javascript
复制
JAXBContext jc = JAXBContext.newInstance("org.w3._2004._08.xop.include");

您没有指定要部署到GlassFish的应用程序类型,但是如果它是JAX/泽西应用程序,我建议使用ContextResolver。这是一种标准机制,可以让您更好地控制如何创建JAXBContext。下面是一个例子。

代码语言:javascript
复制
import java.util.*;
import javax.ws.rs.Produces;
import javax.ws.rs.ext.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextFactory;

@Provider
@Produces({"application/xml", "application/json"})
public class SampleContextResolver implements ContextResolver<JAXBContext> {

    private JAXBContext jc;

    public SampleContextResolver() {
        try {
            jc = JAXBContext.newInstance("org.w3._2004._08.xop.include");
        } catch(JAXBException e) {
            throw new RuntimeException(e);
        }
    }

    public JAXBContext getContext(Class<?> clazz) {
        if(clazz.getPackage().getName().equals("org.w3._2004._08.xop.include")) {
            return jc;
        }
        return null;
    }

}
票数 2
EN

Stack Overflow用户

发布于 2013-05-29 17:08:15

6个月前,我遇到了同样的问题,老实说,我不记得它是如何解决的(可能我们不需要一些功能,所以就把它放在一边了)。但今天,我们可爱的堆叠痕迹又一次受到了信息的诅咒(就像你的一样)。

但这一次我能处理好。

包括课没什么问题。但不知怎么的,这是我的猜测,它没有为jaxb装好,或者在我们需要它的时候没有,或者.管他呢。

我在代码中试图做的是验证soap消息的有效负载。

代码语言:javascript
复制
    JAXBContext jaxbContext = JAXBContext.newInstance(UnifoTransferMsg.class) ;
    SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
    Schema schema = schemaFactory.newSchema(new File("UnifoTransferMsg.xsd"));

    Marshaller marshaller = jaxbContext.createMarshaller();
    marshaller.setSchema(schema);
    marshaller.marshal(inputmsg, System.out);

请不要给我硬编码的值,它只是用于调试。尽管如此,第一行是抛出异常的地方,因为Jaxb不知何故不知道包含或使用错误的类。要修复它,需要在同一个调用中加载多个类。

所以对我来说最终的解决办法是

代码语言:javascript
复制
JAXBContext.newInstance(Include.class, UnifoTransferMsg.class);

希望这会有所帮助,也许有一天我会更多地阐述问题的真正原因。

票数 1
EN

Stack Overflow用户

发布于 2012-08-22 14:01:49

您可以尝试在generate类上添加@XmlRoolElement注释。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/12074317

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档