-
- Type Parameters:
T
- The class of object produced by the producer
- All Known Subinterfaces:
- InjectionTarget<T>
public interface Producer<T>
Provides a generic operation for producing an instance of a type.
- Author:
- Pete Muir, David Allen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
dispose(T instance)
Destroys the instance.Set<InjectionPoint>
getInjectionPoints()
Returns the set of allInjectionPoints
.T
produce(CreationalContext<T> ctx)
Causes an instance to be produced via theProducer
.
-
-
-
Method Detail
-
produce
T produce(CreationalContext<T> ctx)
Causes an instance to be produced via the
Producer
.If the
Producer
represents a class, this will invoke the constructor annotatedInject
if it exists, or the constructor with no parameters otherwise. If the class has interceptors, produce() is responsible for building the interceptors and decorators of the instance.If the
Producer
represents a producer field or method, this will invoke the producer method on, or access the producer field of, a contextual instance of the bean that declares the producer.- Parameters:
ctx
- TheCreationalContext
to use for the produced object- Returns:
- the instance produced
-
dispose
void dispose(T instance)
Destroys the instance.
If the
Producer
represents a class, then this operation does nothing.If the
Producer
represents a producer field or method, this calls the disposer method, if any, on a contextual instance of the bean that declares the disposer method or performs any additional required cleanup, if any, to destroy state associated with a resource.- Parameters:
instance
- The instance to dispose
-
getInjectionPoints
Set<InjectionPoint> getInjectionPoints()
Returns the set of all
InjectionPoints
. If theProducer
represents a class, then this returns returns the set ofInjectionPoint
objects representing all injected fields, bean constructor parameters and initializer method parameters. For a producer method, this returns the set ofInjectionPoint
objects representing all parameters of the producer method.- Returns:
- the set of all injection points for the producer
-
-
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/enterprise/inject/spi/producer.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.