Skip to content
Advertisement

I am trying to convert Xml doc to java obj.Its showing array index out of bounds exception fro the parameter serviceproviders

JavaScript
JavaScript
JavaScript
JavaScript
JavaScript
JavaScript

error Exception in thread “main” java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248) at java.base/java.util.Objects.checkIndex(Objects.java:373) at java.base/java.util.ArrayList.get(ArrayList.java:427) at Parser.main(Parser.java:18)

Advertisement

Answer

The problem is in your ServiceProviders class. There you have modeled the sequence of <ServiceProvider> elements by

JavaScript

That means, within <ServiceProviders>...</ServiceProviders> you expect XML input like this

JavaScript

instead of simply

JavaScript

Of course you do not want the extra <ServiceProvider>...</ServiceProvider> wrapping. Therefore you need to modify the @JacksonXmlElementWrapper annotation to simply

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement