Handling invalid enum values while doing JAXB Unmarshalling

后端 未结 3 1612
野趣味
野趣味 2021-01-02 05:14

My Jaxb has created a Enum class based on the XML schema set up.

**enum Fruit {
    APPLE,ORANGE;
}**

I am using a SOAP UI to check my web

3条回答
  •  误落风尘
    2021-01-02 05:39

    Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB (JSR-222) expert group.

    By default your JAXB (JSR-222) implementation will not fail on any conversion exceptions. If you are using the JAXB APIs to do the unmarshalling then you can set a ValidationEventHandler to catch any problems. Below is an example.

    Root

    package forum12147306;
    
    import javax.xml.bind.annotation.XmlRootElement;
    
    @XmlRootElement
    public class Root {
    
        private int number;
        private Fruit fruit;
    
        public int getNumber() {
            return number;
        }
    
        public void setNumber(int number) {
            this.number = number;
        }
    
        public Fruit getFruit() {
            return fruit;
        }
    
        public void setFruit(Fruit fruit) {
            this.fruit = fruit;
        }
    
    }
    

    Fruit

    package forum12147306;
    
    public enum Fruit {
    
        APPLE, 
        ORANGE;
    
    }
    

    Demo

    package forum12147306;
    
    import java.io.StringReader;
    import javax.xml.bind.*;
    
    public class Demo {
    
        private static final String XML = "ABCGuva";
        public static void main(String[] args) throws Exception {
            JAXBContext jc = JAXBContext.newInstance(Root.class);
    
            Unmarshaller unmarshaller = jc.createUnmarshaller();
            unmarshaller.setEventHandler(new ValidationEventHandler() {
    
                @Override
                public boolean handleEvent(ValidationEvent validationEvent) {
                     System.out.println(validationEvent.getMessage());
                     //validationEvent.getLinkedException().printStackTrace();
                     return true;
                }
    
            });
    
            Root root = (Root) unmarshaller.unmarshal(new StringReader(XML));
        }
    
    }
    

    JAXB REFERENCE IMPLEMENTATION

    Unfortunately there appears to be a bug in the JAXB RI as a validation event is not being through for the invalid enum value.

    Not a number: ABC
    

    Work Around

    Write your own XmlAdapter to handle to conversion to/from the Fruit enum:

    FruitAdapter

    package forum12147306;
    
    import javax.xml.bind.JAXBException;
    import javax.xml.bind.annotation.adapters.XmlAdapter;
    
    public class FruitAdapter extends XmlAdapter {
    
        @Override
        public String marshal(Fruit fruit) throws Exception {
            return fruit.name();
        }
    
        @Override
        public Fruit unmarshal(String string) throws Exception {
            try {
                return Fruit.valueOf(string);
            } catch(Exception e) {
                throw new JAXBException(e);
            }
        }
    
    }
    

    Fruit

    Use the @XmlJavaTypeAdapter annotation to associate the XmlAdapter with the Fruit enumb.

    package forum12147306;
    
    import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
    
    @XmlJavaTypeAdapter(FruitAdapter.class)
    public enum Fruit {
    
        APPLE, 
        ORANGE;
    
    }
    

    New Output

    Not a number: ABC
    javax.xml.bind.JAXBException
     - with linked exception:
    [java.lang.IllegalArgumentException: No enum const class forum12147306.Fruit.Guva]
    

    EclipseLink JAXB (MOXy)

    Using MOXy both validation events are thrown. To specify MOXy as your JAXB provider see: http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html.

    Exception Description: The object [ABC], of class [class java.lang.String], from mapping [org.eclipse.persistence.oxm.mappings.XMLDirectMapping[number-->number/text()]] with descriptor [XMLDescriptor(forum12147306.Root --> [DatabaseTable(root)])], could not be converted to [class java.lang.Integer].
    Internal Exception: java.lang.NumberFormatException: For input string: "ABC"
    
    Exception Description: No conversion value provided for the value [Guva] in field [fruit/text()].
    Mapping: org.eclipse.persistence.oxm.mappings.XMLDirectMapping[fruit-->fruit/text()]
    Descriptor: XMLDescriptor(forum12147306.Root --> [DatabaseTable(root)])
    

提交回复
热议问题