📄 personlistener.java
字号:
package myfirstweb;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
public class PersonListener extends HttpServlet implements HttpSessionListener {
//Notification that a session was created
public void sessionCreated(HttpSessionEvent se) {
// throw new java.lang.UnsupportedOperationException(
// "Method sessionCreated() not yet implemented.");
}
//Notification that a session was invalidated
public void sessionDestroyed(HttpSessionEvent se) {
// throw new java.lang.UnsupportedOperationException(
// "Method sessionDestroyed() not yet implemented.");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -