Spring Boot - Advanced Patterns
Examine the following Spring component:
What is the main issue with this code?
@Component
public class EventSender {
private ApplicationEventPublisher publisher;
public void sendEvent() {
publisher.publishEvent(new CustomEvent(this));
}
}What is the main issue with this code?
