1
私はこのアノテーションを@WebListenerとして使用するのはなぜですか?あなたはこれらの中で何もできないもちろんリスナーインターフェイスを実装するときに@WebListenerを使用するのは何かオプションですか?
public class AppListener implements HttpSessionListener {
public void sessionCreated(HttpSessionEvent se) {
System.out.println("Session created!");
}
public void sessionDestroyed(HttpSessionEvent se) {
System.out.println("Session destroyed!");
}