File tree Expand file tree Collapse file tree 3 files changed +5
-19
lines changed
deployment/src/main/java/io/quarkus/cache/deployment
runtime/src/main/java/io/quarkus/cache/runtime Expand file tree Collapse file tree 3 files changed +5
-19
lines changed Original file line number Diff line number Diff line change 2727import java .util .Set ;
2828import java .util .function .Supplier ;
2929
30+ import jakarta .enterprise .context .ApplicationScoped ;
31+ import jakarta .enterprise .inject .spi .DeploymentException ;
32+
3033import org .jboss .jandex .AnnotationInstance ;
3134import org .jboss .jandex .AnnotationTarget ;
3235import org .jboss .jandex .AnnotationTarget .Kind ;
6669import io .quarkus .deployment .builditem .FeatureBuildItem ;
6770import io .quarkus .deployment .metrics .MetricsCapabilityBuildItem ;
6871import io .quarkus .rest .client .reactive .spi .RestClientAnnotationsTransformerBuildItem ;
69- import jakarta .enterprise .context .ApplicationScoped ;
70- import jakarta .enterprise .inject .spi .DeploymentException ;
7172
7273class CacheProcessor {
7374
@@ -271,6 +272,7 @@ SyntheticBeanBuildItem configureCacheManagerSyntheticBean(List<CacheManagerInfoB
271272 .scope (ApplicationScoped .class )
272273 .supplier (cacheManagerSupplier )
273274 .setRuntimeInit ()
275+ .startup ()
274276 .done ();
275277 }
276278
Original file line number Diff line number Diff line change 1010import io .quarkus .cache .CacheManager ;
1111
1212/**
13- * This class is registered as an @ ApplicationScoped synthetic bean at build time.
13+ * This class is registered as an {@link jakarta.enterprise.context. ApplicationScoped} synthetic bean at build time.
1414 */
1515public class CacheManagerImpl implements CacheManager {
1616
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments