Inverse of @DependsOn annotation
问题 Spring (and presumably other DI containers, but I'm using Spring) recognises the @DependsOn annotation. You use this to identify any other beans that must be initiated BEFORE this bean, eg @Component @DependsOn({"initiatedFirst", "initiatedSecond"}) public class InitiatedThird { //... Is there an analogous annotation that means that the supplied beans must be initiated AFTER the annotated bean? For example @Component @DependencyOf({"initiatedSecond", "initiatedThird"}) public class