All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aspectran.core.util.CustomObjectInputStream Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2023 The Aspectran Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.aspectran.core.util;

import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.ObjectStreamClass;
import java.lang.reflect.Proxy;

/**
 * For re-inflating serialized objects, this class uses the thread context classloader
 * rather than the JVM's default classloader selection.
 */
public class CustomObjectInputStream extends ObjectInputStream {

    private final ClassLoader classLoader;

    public CustomObjectInputStream(InputStream in) throws IOException {
        this(in, ClassUtils.getDefaultClassLoader());
    }

    public CustomObjectInputStream(InputStream in, ClassLoader classLoader) throws IOException {
        super(in);
        this.classLoader = classLoader;
    }

    @Override
    public Class resolveClass(ObjectStreamClass classDesc) throws IOException, ClassNotFoundException {
        try {
            return Class.forName(classDesc.getName(), false, classLoader);
        } catch (ClassNotFoundException e) {
            return super.resolveClass(classDesc);
        }
    }

    @Override
    protected Class resolveProxyClass(String[] interfaces) throws ClassNotFoundException {
        Class[] resolvedInterfaces = new Class[interfaces.length];
        for (int i = 0; i < interfaces.length; i++) {
            resolvedInterfaces[i] = Class.forName(interfaces[i], false, classLoader);
        }
        try {
            @SuppressWarnings("deprecation")
            Class proxyClass = Proxy.getProxyClass(classLoader, resolvedInterfaces);
            return proxyClass;
        } catch (IllegalArgumentException e) {
            throw new ClassNotFoundException(null, e);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy