⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 servletloggingoutput.java

📁 反向的AJAX。最大的特性是我们成为反向的Ajax。DWR1.x允许你用javascript异步的访问java代码。DWR2.0在这上允许你建立异步java访问javascript代码。 反向的Aj
💻 JAVA
字号:
/* * Copyright 2005 Joe Walker * * 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.directwebremoting.util;import javax.servlet.http.HttpServlet;/** * An implementation of LoggingOutput that sends stuff to the Servlet.log * stream. * @author Joe Walker [joe at getahead dot ltd dot uk] */public class ServletLoggingOutput implements LoggingOutput{    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#debug(java.lang.String)     */    public void debug(String message)    {        log(LEVEL_DEBUG, message, null);    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#info(java.lang.String)     */    public void info(String message)    {        log(LEVEL_INFO, message, null);    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#warn(java.lang.String)     */    public void warn(String message)    {        log(LEVEL_WARN, message, null);    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#warn(java.lang.String, java.lang.Throwable)     */    public void warn(String message, Throwable th)    {        log(LEVEL_WARN, message, th);    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#error(java.lang.String)     */    public void error(String message)    {        log(LEVEL_ERROR, message, null);    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#error(java.lang.String, java.lang.Throwable)     */    public void error(String message, Throwable th)    {        log(LEVEL_ERROR, message, th);    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#fatal(java.lang.String)     */    public void fatal(String message)    {        log(LEVEL_FATAL, message, null);    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#fatal(java.lang.String, java.lang.Throwable)     */    public void fatal(String message, Throwable th)    {        log(LEVEL_FATAL, message, th);    }    /**     * Internal log implementation.     * @param loglevel The level to log at     * @param message The (optional) message to log     * @param th The (optional) exception     */    private static void log(int loglevel, String message, Throwable th)    {        if (loglevel >= level)        {            HttpServlet servlet = (HttpServlet) servlets.get();            if (servlet != null)            {                // Tomcat 4 NPEs is th is null                if (th == null)                {                    servlet.log(message);                }                else                {                    servlet.log(message, th);                }            }            else            {                if (message != null)                {                    System.out.println(message);                }                if (th != null)                {                    th.printStackTrace();                }            }        }    }    /**     * Associate a servlet with this thread for logging purposes.     * @param servlet The servlet to use for logging in this thread     */    public static void setExecutionContext(HttpServlet servlet)    {        servlets.set(servlet);    }    /**     * Remove the servlet from this thread for logging purposes     */    public static void unsetExecutionContext()    {        servlets.set(null);    }    /**     * String version of setLevel.     * @param logLevel One of FATAL, ERROR, WARN, INFO, DEBUG     */    public static void setLevel(String logLevel)    {        if (logLevel.equalsIgnoreCase("FATAL"))        {            setLevel(LEVEL_FATAL);        }        else if (logLevel.equalsIgnoreCase("ERROR"))        {            setLevel(LEVEL_ERROR);        }        else if (logLevel.equalsIgnoreCase("WARN"))        {            setLevel(LEVEL_WARN);        }        else if (logLevel.equalsIgnoreCase("INFO"))        {            setLevel(LEVEL_INFO);        }        else if (logLevel.equalsIgnoreCase("DEBUG"))        {            setLevel(LEVEL_DEBUG);        }        else        {            throw new IllegalArgumentException("Unknown log level: " + logLevel);        }    }    /* (non-Javadoc)     * @see org.directwebremoting.util.LoggingOutput#isDebugEnabled()     */    public boolean isDebugEnabled()    {        return level == LEVEL_DEBUG;    }    /**     * @param level The logging level to set.     */    public static void setLevel(int level)    {        ServletLoggingOutput.level = level;    }    /**     * @return Returns the logging level.     */    public static int getLevel()    {        return level;    }    /**     * The container for all known threads     */    private static final ThreadLocal servlets = new ThreadLocal();    /**     * What is the current debug level?     */    private static int level = LEVEL_WARN;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -