Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code LNG204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.
java.rmi.server

Class RMIClassLoaderSpi

    • Constructor Detail

      • RMIClassLoaderSpi

        public RMIClassLoaderSpi()
    • Method Detail

      • loadClass

        public abstract Class<?> loadClass(String codebase,
                         String name,
                         ClassLoader defaultLoader)
                                    throws MalformedURLException,
                                           ClassNotFoundException
        Provides the implementation for RMIClassLoader.loadClass(URL,String), RMIClassLoader.loadClass(String,String), and RMIClassLoader.loadClass(String,String,ClassLoader). Loads a class from a codebase URL path, optionally using the supplied loader. Typically, a provider implementation will attempt to resolve the named class using the given defaultLoader, if specified, before attempting to resolve the class from the codebase URL path.

        An implementation of this method must either return a class with the given name or throw an exception.

        Parameters:
        codebase - the list of URLs (separated by spaces) to load the class from, or null
        name - the name of the class to load
        defaultLoader - additional contextual class loader to use, or null
        Returns:
        the Class object representing the loaded class
        Throws:
        MalformedURLException - if codebase is non-null and contains an invalid URL, or if codebase is null and a provider-specific URL used to load classes is invalid
        ClassNotFoundException - if a definition for the class could not be found at the specified location
      • loadProxyClass

        public abstract Class<?> loadProxyClass(String codebase,
                              String[] interfaces,
                              ClassLoader defaultLoader)
                                         throws MalformedURLException,
                                                ClassNotFoundException
        Provides the implementation for RMIClassLoader.loadProxyClass(String,String[],ClassLoader). Loads a dynamic proxy class (see Proxy that implements a set of interfaces with the given names from a codebase URL path, optionally using the supplied loader.

        An implementation of this method must either return a proxy class that implements the named interfaces or throw an exception.

        Parameters:
        codebase - the list of URLs (space-separated) to load classes from, or null
        interfaces - the names of the interfaces for the proxy class to implement
        defaultLoader - additional contextual class loader to use, or null
        Returns:
        a dynamic proxy class that implements the named interfaces
        Throws:
        MalformedURLException - if codebase is non-null and contains an invalid URL, or if codebase is null and a provider-specific URL used to load classes is invalid
        ClassNotFoundException - if a definition for one of the named interfaces could not be found at the specified location, or if creation of the dynamic proxy class failed (such as if Proxy.getProxyClass(ClassLoader,Class[]) would throw an IllegalArgumentException for the given interface list)
      • getClassLoader

        public abstract ClassLoader getClassLoader(String codebase)
                                            throws MalformedURLException
        Provides the implementation for RMIClassLoader.getClassLoader(String). Returns a class loader that loads classes from the given codebase URL path.

        If there is a security manger, its checkPermission method will be invoked with a RuntimePermission("getClassLoader") permission; this could result in a SecurityException. The implementation of this method may also perform further security checks to verify that the calling context has permission to connect to all of the URLs in the codebase URL path.

        Parameters:
        codebase - the list of URLs (space-separated) from which the returned class loader will load classes from, or null
        Returns:
        a class loader that loads classes from the given codebase URL path
        Throws:
        MalformedURLException - if codebase is non-null and contains an invalid URL, or if codebase is null and a provider-specific URL used to identify the class loader is invalid
        SecurityException - if there is a security manager and the invocation of its checkPermission method fails, or if the caller does not have permission to connect to all of the URLs in the codebase URL path
      • getClassAnnotation

        public abstract String getClassAnnotation(Class<?> cl)
        Provides the implementation for RMIClassLoader.getClassAnnotation(Class). Returns the annotation string (representing a location for the class definition) that RMI will use to annotate the class descriptor when marshalling objects of the given class.
        Parameters:
        cl - the class to obtain the annotation for
        Returns:
        a string to be used to annotate the given class when it gets marshalled, or null
        Throws:
        NullPointerException - if cl is null

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/rmi/server/rmiclassloaderspi.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut