監聽Session事件不能編譯,大家幫忙看看

rich發表於2004-05-28
我做了一個簡單的Session監聽事件的處理不能編譯百思不得其所,請大家幫幫忙看看。

package pdcn.LXConnection;

import java.io.*;
import javax.servlet.http.*;
//事件監聽
public class SEvent implements HttpSessionBindingListener
{
public void valueBound(HttpSessionBindingEvent event)
{
System.out.println("Start");
}

public void valueUnBound(HttpSessionBindingEvent event)
{
System.out.println("End");
}
}

還有,我要在方法裡獲取Session裡的物件怎樣獲得,請告知一二,在此先謝謝。

對了,錯誤如下:
G:\JavaWork\JavaTemp\TempConnection\Conns2\SEvent.java:6: pdcn.LXConnection.SEvent should be declared abstract; it does not define valueUnbound(javax.servlet.http.HttpSessionBindingEvent) in pdcn.LXConnection.SEvent
public class SEvent implements HttpSessionBindingListener
^
1 error

相關文章