我使用Spring 4並希望使用ServletContextListener
。當我添加@WebListener
註釋到類eclipse IDE顯示編譯錯誤。此外,該實現還顯示編譯錯誤。Spring @WebListener不可用
public class MyContextListener implements ServletContextListener { // this shows compiler
錯誤基礎的ServletContextListener
我加彈簧的web爲好。春季版本是4.0.3.RELEASE
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
任何人都可以告訴我哪裏可以是問題。
謝謝LOTT ...現在我可以實現偵聽器。但註釋不可用@WebListener ..我能做些什麼? – 2014-09-04 07:12:09
將servlet-api.jar添加到您的類路徑中。更新我的回答wrt您的意見 – BatScream 2014-09-04 07:15:15
您至少需要3.0版本... 2.4是相當老... – 2014-09-04 07:21:03