We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems spring has added background initialization as a core DI feature.
Something like this would synergize well with beans that take some time to construct, allowing for other beans to be wired during the same time.
The text was updated successfully, but these errors were encountered:
My initial thought is to generate background beans like this
@Generated("io.avaje.inject.generator") public final class BackgroundBean$DI { public static void build(Builder builder) { if (builder.isAddBeanFor(BackgroundBean.class)) { builder.registerProvider(CompletableFuture.supplyAsync(() -> { var bean = new BackgroundBean(); return bean; })::join); } } }
Sorry, something went wrong.
SentryMan
No branches or pull requests
It seems spring has added background initialization as a core DI feature.
Something like this would synergize well with beans that take some time to construct, allowing for other beans to be wired during the same time.
The text was updated successfully, but these errors were encountered: