Answers
- It’s based on the CDI for Java 2.0 specification.
- When using
ApplicationScope
, the objects are lazily loaded. WithSingleton
, the objects are eagerly loaded. - The
@
Inject
annotation. - The
@
QuarkusTest
annotation.
ApplicationScope
, the objects are lazily loaded. With Singleton
, the objects are eagerly loaded.@
Inject
annotation.@
QuarkusTest
annotation.