import javax.inject.Inject;
public class Printer {
@Inject Greeting greeting;
...
}
Java Platform, Enterprise Edition (Java EE) 8 The Java EE Tutorial |
Previous | Next | Contents |
To use the beans you create, you inject them into yet another
bean that can then be used by an application, such as a JavaServer Faces
application. For example, you might create a bean called Printer
into
which you would inject one of the Greeting
beans:
import javax.inject.Inject;
public class Printer {
@Inject Greeting greeting;
...
}
This code injects the @Default
Greeting
implementation into the
bean. The following code injects the @Informal
implementation:
import javax.inject.Inject;
public class Printer {
@Inject @Informal Greeting greeting;
...
}
More is needed for the complete picture of this bean. Its use of scope needs to be understood. In addition, for a JavaServer Faces application, the bean needs to be accessible through the EL.
Now that you can identify the target of the injection, it is important to
understand what can be injected and in what context. JSF 2.3 provides producers
that enable most important JSF artifacts to be injected. For detailed information,
see the package javadoc for
javax.faces.annotation
.
Previous | Next | Contents |