javax.el

Class BeanNameELResolver


  • public class BeanNameELResolver
    extends ELResolver

    An ELResolver for resolving user or container managed beans.

    A BeanNameResolver is required for its proper operation. The following example creates an ELResolver that resolves the name "bean" to an instance of MyBean.

     ELResovler elr = new BeanNameELResolver(new BeanNameResolver {
        public boolean isNameResolved(String beanName) {
           return "bean".equals(beanName);
        }
        public Object getBean(String beanName) {
           return "bean".equals(beanName)? new MyBean(): null;
        }
     });
     

    Since:
    EL 3.0
    • Constructor Detail

      • BeanNameELResolver

        public BeanNameELResolver(BeanNameResolver beanNameResolver)
        Constructor
        Parameters:
        beanNameResolver - The BeanNameResolver that resolves a bean name.
    • Method Detail

      • getValue

        public Object getValue(ELContext context,
                               Object base,
                               Object property)
        If the base object is null and the property is a name that is resolvable by the BeanNameResolver, returns the value resolved by the BeanNameResolver.

        If name is resolved by the BeanNameResolver, the propertyResolved property of the ELContext object must be set to true by this resolver, before returning. If this property is not true after this method is called, the caller should ignore the return value.

        Specified by:
        getValue in class ELResolver
        Parameters:
        context - The context of this evaluation.
        base - null
        property - The name of the bean.
        Returns:
        If the propertyResolved property of ELContext was set to true, then the value of the bean with the given name. Otherwise, undefined.
        Throws:
        NullPointerException - if context is null.
        ELException - if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
      • setValue

        public void setValue(ELContext context,
                             Object base,
                             Object property,
                             Object value)
        If the base is null and the property is a name that is resolvable by the BeanNameResolver, the bean in the BeanNameResolver is set to the given value.

        If the name is resolvable by the BeanNameResolver, or if the BeanNameResolver allows creating a new bean, the propertyResolved property of the ELContext object must be set to true by the resolver, before returning. If this property is not true after this method is called, the caller can safely assume no value has been set.

        Specified by:
        setValue in class ELResolver
        Parameters:
        context - The context of this evaluation.
        base - null
        property - The name of the bean
        value - The value to set the bean with the given name to.
        Throws:
        NullPointerException - if context is null
        PropertyNotWritableException - if the BeanNameResolver does not allow the bean to be modified.
        ELException - if an exception was thrown while attempting to set the bean with the given name. The thrown exception must be included as the cause property of this exception, if available.
      • getType

        public Class<?> getType(ELContext context,
                                Object base,
                                Object property)
        If the base is null and the property is a name resolvable by the BeanNameResolver, return the type of the bean.

        If the name is resolvable by the BeanNameResolver, the propertyResolved property of the ELContext object must be set to true by the resolver, before returning. If this property is not true after this method is called, the caller can safely assume no value has been set.

        Specified by:
        getType in class ELResolver
        Parameters:
        context - The context of this evaluation.
        base - null
        property - The name of the bean.
        Returns:
        If the propertyResolved property of ELContext was set to true, then the type of the bean with the given name. Otherwise, undefined.
        Throws:
        NullPointerException - if context is null.
        ELException - if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
      • isReadOnly

        public boolean isReadOnly(ELContext context,
                                  Object base,
                                  Object property)
        If the base is null and the property is a name resolvable by the BeanNameResolver, attempts to determine if the bean is writable.

        If the name is resolvable by the BeanNameResolver, the propertyResolved property of the ELContext object must be set to true by the resolver, before returning. If this property is not true after this method is called, the caller can safely assume no value has been set.

        Specified by:
        isReadOnly in class ELResolver
        Parameters:
        context - The context of this evaluation.
        base - null
        property - The name of the bean.
        Returns:
        If the propertyResolved property of ELContext was set to true, then true if the property is read-only or false if not; otherwise undefined.
        Throws:
        NullPointerException - if context is null.
        ELException - if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
      • getCommonPropertyType

        public Class<?> getCommonPropertyType(ELContext context,
                                              Object base)
        Always returns String.class, since a bean name is a String.
        Specified by:
        getCommonPropertyType in class ELResolver
        Parameters:
        context - The context of this evaluation.
        base - null.
        Returns:
        String.class.

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 18/08/2025 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-javaee-rf-javax/el/beannameelresolver.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 van 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.