-
@Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface FacesConverter
The presence of this annotation on a class automatically registers the class with the runtime as a
Converter
. The value of thevalue()
attribute is taken to be converter-id, the value of theforClass()
attribute is taken to be converter-for-class and the fully qualified class name of the class to which this annotation is attached is taken to be the converter-class. The implementation must guarantee that for each class annotated withFacesConverter
, found with the algorithm in section JSF.11.5, the proper variant ofApplication.addConverter()
is called. If converter-id is not the empty string,Application.addConverter(java.lang.String,java.lang.String)
is called, passing the derived converter-id as the first argument and the derived converter-class as the second argument. If converter-id is the empty string,Application.addConverter(java.lang.Class,java.lang.String)
is called, passing the converter-for-class as the first argument and the derived converter-class as the second argument. The implementation must guarantee that all such calls toaddConverter()
happen during application startup time and before any requests are serviced.The preceding text contains an important subtlety which application users should understand. It is not possible to use a single
@FacesConverter
annotation to register a singleConverter
implementation both in theby-class
and theby-converter-id
data structures. One way to achieve this result is to put the actual converter logic in an abstract base class, without a@FacesConverter
annotation, and derive two sub-classes, each with a@FacesConverter
annotation. One sub-class has avalue
attribute but noforClass
attribute, and the other sub-class has the converse.Please see the ViewDeclarationLanguage documentation for
<h:selectManyListBox>
for another important subtlety regarding converters and collections.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element and Description Class
forClass
The value of this annotation attribute is taken to be the converter-for-class with which instances of this class of converter can be instantiated by calling
Application.createConverter(java.lang.Class)
.String
value
The value of this annotation attribute is taken to be the converter-id with which instances of this class of converter can be instantiated by calling
Application.createConverter(java.lang.String)
.
-
-
-
Element Detail
-
value
public abstract String value
The value of this annotation attribute is taken to be the converter-id with which instances of this class of converter can be instantiated by calling
Application.createConverter(java.lang.String)
.- Default:
- ""
-
-
-
forClass
public abstract Class forClass
The value of this annotation attribute is taken to be the converter-for-class with which instances of this class of converter can be instantiated by calling
Application.createConverter(java.lang.Class)
.- Default:
- java.lang.Object.class
-
-
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/convert/FacesConverter.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.