View | Details | Raw Unified | Return to bug 50793
Collapse All | Expand All

(-)webapps/examples/WEB-INF/web.xml (+3 lines)
Lines 105-110 Link Here
105
    <listener>
105
    <listener>
106
        <listener-class>listeners.SessionListener</listener-class>
106
        <listener-class>listeners.SessionListener</listener-class>
107
    </listener>
107
    </listener>
108
    <listener>
109
        <listener-class>listeners.RequestListener</listener-class>
110
    </listener>
108
111
109
    <!-- Define servlets that are included in the example application -->
112
    <!-- Define servlets that are included in the example application -->
110
113
(-)webapps/examples/WEB-INF/classes/listeners/RequestListener.java (+45 lines)
Line 0 Link Here
1
/*
2
* Licensed to the Apache Software Foundation (ASF) under one or more
3
* contributor license agreements.  See the NOTICE file distributed with
4
* this work for additional information regarding copyright ownership.
5
* The ASF licenses this file to You under the Apache License, Version 2.0
6
* (the "License"); you may not use this file except in compliance with
7
* the License.  You may obtain a copy of the License at
8
*
9
*     http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*/
17
package listeners;
18
19
import org.apache.juli.logging.Log;
20
import org.apache.juli.logging.LogFactory;
21
22
import javax.servlet.ServletRequestEvent;
23
import javax.servlet.ServletRequestListener;
24
import javax.servlet.http.HttpServletRequest;
25
26
/**
27
 * Example listener for request related events.
28
 * This implementation just logs the URI and dispatch type
29
 */
30
public class RequestListener implements ServletRequestListener {
31
    Log log = LogFactory.getLog(RequestListener.class);
32
33
34
    @Override
35
    public void requestInitialized(ServletRequestEvent sre) {
36
        HttpServletRequest request = (HttpServletRequest) sre.getServletRequest();
37
        log.info("Request initialized, path = " + request.getRequestURI() + " type = " + request.getDispatcherType());
38
    }
39
40
    @Override
41
    public void requestDestroyed(ServletRequestEvent sre) {
42
        HttpServletRequest request = (HttpServletRequest) sre.getServletRequest();
43
        log.info("Request destroyed, path = " + request.getRequestURI() + " type = " + request.getDispatcherType());
44
    }
45
}

Return to bug 50793