I have few beans which needs to be initialized either parallely or eagerly and to do this while reading the docs of micronaut, I noticed @Parallel annotation which can be used to initialize beans parallely and I came across @Context annotation which I am not able to understand clearly.
As for as my understanding is concerned, @Parallel annotation will shutdown the application if any of the beans executing simultaneously fails whereas @Context will not even startup the application if there is any failure.
I just wanted to check if this correct? Also, if I want to do eager initialization of bean rather than on-demand which annotation is the best one to use?
Any help appreciated, thanks in advance!