not able to publish custom event in spring before context load
问题 I am trying to publish a custom event in Spring MVC, but is is not firing while context is loading, below are the code snippet, The onConnectionOpened will be called after connecting to a server which is triggered after bean initialization using @PostConstruct @Autowired private ApplicationEventPublisher publisher; public void onConnectionOpened(EventObject event) { publisher.publishEvent(new StateEvent("ConnectionOpened", event)); } I am using annotation in listener part as below