What annotation is missing in the annotation-driven listener? Write the name this annotation with the @ sign.
@Component
public class AnnotationListener {
//annotation missed
public void handleEvent(TestEvent event) {
System.out.println("Handling the event...");
}
}