我如何修复错误“类型ApplicationListener不是通用的;它不能用参数<contextrefresedevents>参数化”?

时间:2016-08-24 13:30:37

标签: java spring

我的课程定义如下:

public class StartEventListener implements ApplicationListener<ContextRefreshedEvent>

我收到了错误:

The type ApplicationListener is not generic; it cannot be parameterized with the arguments <ContextRefresedEvents>

我已经尝试过所有其他方法来解决这个问题并且没有成功,是否有人知道修复此问题?

1 个答案:

答案 0 :(得分:4)

使用

import org.springframework.context.ApplicationListener;

您可能正在使用非通用ApplicationListener