net.bull.javamelody.ReportServlet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javamelody-core Show documentation
Show all versions of javamelody-core Show documentation
Monitoring of JavaEE applications
/*
* Copyright 2008-2017 by Emeric Vernat
*
* This file is part of Java Melody.
*
* 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 net.bull.javamelody;
import java.io.IOException;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.bull.javamelody.internal.common.LOG;
import net.bull.javamelody.internal.model.Collector;
import net.bull.javamelody.internal.web.HttpAuth;
import net.bull.javamelody.internal.web.MonitoringController;
/**
* Alternative report servlet.
* Note that this servlet is rarely needed, because the .../monitoring url of the {@link MonitoringFilter} is enough for the reports of most webapps.
* @author petersky
* @author Emeric Vernat
*/
public class ReportServlet extends HttpServlet {
static final String FILTER_CONTEXT_KEY = "javamelody.filterContext";
private static final long serialVersionUID = 1L;
@SuppressWarnings("all")
private ServletConfig servletConfig;
@SuppressWarnings("all")
private transient HttpAuth httpAuth;
/** {@inheritDoc} */
@Override
public void init(ServletConfig config) {
this.servletConfig = config;
httpAuth = new HttpAuth();
LOG.debug("JavaMelody report servlet initialized");
}
/** {@inheritDoc} */
@Override
public void destroy() {
servletConfig = null;
}
@Override
protected void doGet(HttpServletRequest httpRequest, HttpServletResponse httpResponse)
throws ServletException, IOException {
final FilterContext filterContext = (FilterContext) servletConfig.getServletContext()
.getAttribute(FILTER_CONTEXT_KEY);
assert filterContext != null;
if (!httpAuth.isAllowed(httpRequest, httpResponse)) {
return;
}
final Collector collector = filterContext.getCollector();
final MonitoringController monitoringController = new MonitoringController(collector, null);
monitoringController.doActionIfNeededAndReport(httpRequest, httpResponse,
servletConfig.getServletContext());
}
}