类 LoggingApplicationListener

  • 所有已实现的接口:
    EventListener, org.springframework.context.ApplicationListener<org.springframework.context.ApplicationEvent>, org.springframework.context.event.GenericApplicationListener, org.springframework.core.Ordered

    public class LoggingApplicationListener
    extends Object
    implements org.springframework.context.event.GenericApplicationListener
    An ApplicationListener that configures the LoggingSystem. If the environment contains a logging.config property it will be used to bootstrap the logging system, otherwise a default configuration is used. Regardless, logging levels will be customized if the environment contains logging.level.* entries and logging groups can be defined with logging.group.

    Debug and trace logging for Spring, Tomcat, Jetty and Hibernate will be enabled when the environment contains debug or trace properties that aren't set to "false" (i.e. if you start your application using java -jar myapp.jar [--debug | --trace]). If you prefer to ignore these properties you can set parseArgs to false.

    By default, log output is only written to the console. If a log file is required the logging.path and logging.file properties can be used.

    Some system properties may be set as side effects, and these can be useful if the logging configuration supports placeholders (i.e. log4j or logback):

    • LOG_FILE is set to the value of path of the log file that should be written (if any).
    • PID is set to the value of the current process ID if it can be determined.
    从以下版本开始:
    2.0.0
    另请参阅:
    LoggingSystem.get(ClassLoader)
    • 方法详细资料

      • supportsEventType

        public boolean supportsEventType​(org.springframework.core.ResolvableType resolvableType)
        指定者:
        supportsEventType 在接口中 org.springframework.context.event.GenericApplicationListener
      • supportsSourceType

        public boolean supportsSourceType​(Class<?> sourceType)
        指定者:
        supportsSourceType 在接口中 org.springframework.context.event.GenericApplicationListener
      • onApplicationEvent

        public void onApplicationEvent​(org.springframework.context.ApplicationEvent event)
        指定者:
        onApplicationEvent 在接口中 org.springframework.context.ApplicationListener<org.springframework.context.ApplicationEvent>
      • initialize

        protected void initialize​(org.springframework.core.env.ConfigurableEnvironment environment,
                                  ClassLoader classLoader)
        Initialize the logging system according to preferences expressed through the Environment and the classpath.
        参数:
        environment - the environment
        classLoader - the classloader
      • setOrder

        public void setOrder​(int order)
      • getOrder

        public int getOrder()
        指定者:
        getOrder 在接口中 org.springframework.context.event.GenericApplicationListener
        指定者:
        getOrder 在接口中 org.springframework.core.Ordered
      • setSpringBootLogging

        public void setSpringBootLogging​(LogLevel springBootLogging)
        Sets a custom logging level to be used for Spring Boot and related libraries.
        参数:
        springBootLogging - the logging level
      • setParseArgs

        public void setParseArgs​(boolean parseArgs)
        Sets if initialization arguments should be parsed for debug and trace properties (usually defined from --debug or --trace command line args). Defaults to true.
        参数:
        parseArgs - if arguments should be parsed