System.out.println("\nMarshalled JSON:");
System.out.println(writer.toString());
// Unmarshal
final Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
final JAXBElement<ComplexXmlEventBean> unmarshal = unmarshaller.unmarshal(
Stax2JsonFactory.createReader(new StringReader(writer.toString()), configuration, null,
ComplexXmlEventBean.class, jaxbContext, false),
ComplexXmlEventBean.class);