I want to create some info logging to console when all spring
content is initialized.
This includes all @Autowired
dependencies resolved, all properties injected, and all @PostConstruct
methods finished.
That's also why I can't use @PostConstruct
here, as the order of multiple post annotations cnanot be guaranteed.
So, how could I achieve this?