Package org.apache.catalina.util

Examples of org.apache.catalina.util.CustomObjectInputStream.readObject()


  public void deserializeInto(byte[] data, RedisSession session, SessionSerializationMetadata metadata) throws IOException, ClassNotFoundException {
    try(
        BufferedInputStream bis = new BufferedInputStream(new ByteArrayInputStream(data));
        ObjectInputStream ois = new CustomObjectInputStream(bis, loader);
    ) {
      SessionSerializationMetadata serializedMetadata = (SessionSerializationMetadata)ois.readObject();
      metadata.copyFieldsFrom(serializedMetadata);
      session.readObjectData(ois);
    }
  }
}
View Full Code Here


        CustomObjectInputStream objectInputStream = null;
        try {
            Container webapp = getManager().getContainer();
            objectInputStream = new CustomObjectInputStream(inputStream, webapp.getLoader().getClassLoader());

            readObject = objectInputStream.readObject();
        } finally {
            try { objectInputStream.close(); } catch (Exception e) {}
        }

        if (readObject instanceof Map<?, ?>) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.