试题详情

在Spring中,@PostConstruct注解的方法在整个Bean初始化中的执行顺序是( )

AConstructor(构造方法) -> @Autowired(依赖注入) -> @PostConstruct(注释的方法)

BConstructor(构造方法) -> @PostConstruct(注释的方法)-> @Autowired(依赖注入)

C@PostConstruct(注释的方法) ->Constructor(构造方法) -> @Autowired(依赖注入)

D@Autowired(依赖注入) ->Constructor(构造方法) -> @PostConstruct(注释的方法)