📄 ex6_13.txt
字号:
Example 6.13 Logging Filter
public class LoggingFilter extends TemplateFilter {
public void doPreProcessing(ServletRequest req, ServletResponse res) {
//do some preprocessing here, such as logging some information about
// the request before it抯 been handled.
}
public void doPostProcessing(ServletRequest req, ServletResponse res){
// do some post-processing here, such as logging some information
// about the request and response after the request has been handled
// and the response generated.
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -