It says in Java's documentation page for PostConstruct that
Only one method can be annotated with this annotation
But I just tried annotating three methods of a standalone application with PostConstruct. No compile errors, and all three of them are invoked and executed smoothly.
So what am I missing? In what kind of class can and cannot exist multiple PostConstruct annotations?