-
@Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface ResourceDependency
Instances of
UIComponent
orRenderer
that have this annotation (orResourceDependencies
attached at the class level will automatically have a resource dependency added so that the named resource will be present in user agent's view of theUIViewRoot
in which this component or renderer is used.The default implementation must support attaching this annotation to
UIComponent
orRenderer
classes. In both cases, the event that precipitates the processing of this annotation is the insertion of aUIComponent
instance into the view hierarchy on an initial request for a view. When that event happens, the following action must be taken.If this annotation is not present on the class in question, no action must be taken.
Create a
UIOutput
instance by passingjavax.faces.Output
. toApplication.createComponent(java.lang.String)
.Get the annotation instance from the class and obtain the values of the name, library, and target attributes.
If library is the empty string, let library be
null
.If target is the empty string, let target be
null
.Obtain the renderer-type for the resource name by passing name to
ResourceHandler.getRendererTypeForResourceName(java.lang.String)
.Call
setRendererType
on theUIOutput
instance, passing the renderer-type.Obtain the
Map
of attributes from theUIOutput
component by callingUIComponent.getAttributes()
.Store the name into the attributes
Map
under the key "name".If library is non-
null
, store it under the key "library".If target is non-
null
, store it under the key "target".Otherwise, if target is
null
, callUIViewRoot.addComponentResource(javax.faces.context.FacesContext, javax.faces.component.UIComponent)
, passing theUIOutput
instance as the second argument.
Example:
@ResourceDependency(library="corporate", name="colorAndMedia.css"),
- Since:
- 2.0
-
-
Required Element Summary
Required Elements Modifier and Type Required Element and Description String
name
The resourceName of the resource pointed to by this
ResourceDependency
.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element and Description String
library
The libraryName in which the resource pointed to by this
ResourceDependency
resides.String
target
The value given for this attribute will be passed as the "target" argument to
UIViewRoot.addComponentResource(javax.faces.context.FacesContext, javax.faces.component.UIComponent, java.lang.String)
.
-
-
-
Element Detail
-
name
public abstract String name
The resourceName of the resource pointed to by this
ResourceDependency
. It is valid to have EL Expressions in the value of this attribute, as long as the expression resolves to an instance of the expected type.
-
-
-
library
public abstract String library
The libraryName in which the resource pointed to by this
ResourceDependency
resides. If not specified, defaults to the empty string. It is valid to have EL Expressions in the value of this attribute, as long as the expression resolves to an instance of the expected type.- Default:
- ""
-
-
-
target
public abstract String target
The value given for this attribute will be passed as the "target" argument to
UIViewRoot.addComponentResource(javax.faces.context.FacesContext, javax.faces.component.UIComponent, java.lang.String)
. If this attribute is specified,UIViewRoot.addComponentResource(javax.faces.context.FacesContext,javax.faces.component.UIComponent)
must be called instead, as described above. It is valid to have EL Expressions in the value of this attribute, as long as the expression resolves to an instance of the expected type.- Default:
- ""
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 18/08/2025
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-javaee-rf-javax/faces/application/resourcedependency.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor dieser Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.