I am making the following call:
Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
Object obj = unmarshaller.unmarshal(new
ByteArrayInputStream(data.getBytes()));
Note that jaxbContext is a singleton that has been initialized.
In my core dump I see a stack trace that ends with
java/util.zip.ZipFile.getEntry();
Question:
Does each call to Unmarshaller.unmarshal result in a file read
operation?
TIA,
Mark