Answers
- It's based on the Contexts and Dependency Injection (CDI) for Java 2.0 specification.
- When using
ApplicationScoped
, the objects are lazy-loaded. WithSingleton
, the objects are eagerly loaded. - The
@Inject
annotation. - The
@QuarkusTest
annotation.