/*
 * Copyright 2002-2018 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.web.context.support;

import org.springframework.context.ApplicationEvent;
import org.springframework.lang.Nullable;

Event raised when a request is handled within an ApplicationContext.

Supported by Spring's own FrameworkServlet (through a specific ServletRequestHandledEvent subclass), but can also be raised by any other web component. Used, for example, by Spring's out-of-the-box PerformanceMonitorListener.

Author:Rod Johnson, Juergen Hoeller
See Also:
Since:January 17, 2001
/** * Event raised when a request is handled within an ApplicationContext. * * <p>Supported by Spring's own FrameworkServlet (through a specific * ServletRequestHandledEvent subclass), but can also be raised by any * other web component. Used, for example, by Spring's out-of-the-box * PerformanceMonitorListener. * * @author Rod Johnson * @author Juergen Hoeller * @since January 17, 2001 * @see ServletRequestHandledEvent * @see org.springframework.web.servlet.FrameworkServlet * @see org.springframework.context.ApplicationContext#publishEvent */
@SuppressWarnings("serial") public class RequestHandledEvent extends ApplicationEvent {
Session id that applied to the request, if any.
/** Session id that applied to the request, if any. */
@Nullable private String sessionId;
Usually the UserPrincipal.
/** Usually the UserPrincipal. */
@Nullable private String userName;
Request processing time.
/** Request processing time. */
private final long processingTimeMillis;
Cause of failure, if any.
/** Cause of failure, if any. */
@Nullable private Throwable failureCause;
Create a new RequestHandledEvent with session information.
Params:
  • source – the component that published the event
  • sessionId – the id of the HTTP session, if any
  • userName – the name of the user that was associated with the request, if any (usually the UserPrincipal)
  • processingTimeMillis – the processing time of the request in milliseconds
/** * Create a new RequestHandledEvent with session information. * @param source the component that published the event * @param sessionId the id of the HTTP session, if any * @param userName the name of the user that was associated with the * request, if any (usually the UserPrincipal) * @param processingTimeMillis the processing time of the request in milliseconds */
public RequestHandledEvent(Object source, @Nullable String sessionId, @Nullable String userName, long processingTimeMillis) { super(source); this.sessionId = sessionId; this.userName = userName; this.processingTimeMillis = processingTimeMillis; }
Create a new RequestHandledEvent with session information.
Params:
  • source – the component that published the event
  • sessionId – the id of the HTTP session, if any
  • userName – the name of the user that was associated with the request, if any (usually the UserPrincipal)
  • processingTimeMillis – the processing time of the request in milliseconds
  • failureCause – the cause of failure, if any
/** * Create a new RequestHandledEvent with session information. * @param source the component that published the event * @param sessionId the id of the HTTP session, if any * @param userName the name of the user that was associated with the * request, if any (usually the UserPrincipal) * @param processingTimeMillis the processing time of the request in milliseconds * @param failureCause the cause of failure, if any */
public RequestHandledEvent(Object source, @Nullable String sessionId, @Nullable String userName, long processingTimeMillis, @Nullable Throwable failureCause) { this(source, sessionId, userName, processingTimeMillis); this.failureCause = failureCause; }
Return the processing time of the request in milliseconds.
/** * Return the processing time of the request in milliseconds. */
public long getProcessingTimeMillis() { return this.processingTimeMillis; }
Return the id of the HTTP session, if any.
/** * Return the id of the HTTP session, if any. */
@Nullable public String getSessionId() { return this.sessionId; }
Return the name of the user that was associated with the request (usually the UserPrincipal).
See Also:
  • getUserPrincipal.getUserPrincipal()
/** * Return the name of the user that was associated with the request * (usually the UserPrincipal). * @see javax.servlet.http.HttpServletRequest#getUserPrincipal() */
@Nullable public String getUserName() { return this.userName; }
Return whether the request failed.
/** * Return whether the request failed. */
public boolean wasFailure() { return (this.failureCause != null); }
Return the cause of failure, if any.
/** * Return the cause of failure, if any. */
@Nullable public Throwable getFailureCause() { return this.failureCause; }
Return a short description of this event, only involving the most important context data.
/** * Return a short description of this event, only involving * the most important context data. */
public String getShortDescription() { StringBuilder sb = new StringBuilder(); sb.append("session=[").append(this.sessionId).append("]; "); sb.append("user=[").append(this.userName).append("]; "); return sb.toString(); }
Return a full description of this event, involving all available context data.
/** * Return a full description of this event, involving * all available context data. */
public String getDescription() { StringBuilder sb = new StringBuilder(); sb.append("session=[").append(this.sessionId).append("]; "); sb.append("user=[").append(this.userName).append("]; "); sb.append("time=[").append(this.processingTimeMillis).append("ms]; "); sb.append("status=["); if (!wasFailure()) { sb.append("OK"); } else { sb.append("failed: ").append(this.failureCause); } sb.append(']'); return sb.toString(); } @Override public String toString() { return ("RequestHandledEvent: " + getDescription()); } }