public abstract class org.springframework.web.server.adapter.AbstractReactiveWebInitializer implements org.springframework.web.WebApplicationInitializer
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.web.server.adapter.AbstractReactiveWebInitializer
  super_class: java.lang.Object
{
  public static final java.lang.String DEFAULT_SERVLET_NAME;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "http-handler-adapter"

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/server/adapter/AbstractReactiveWebInitializer;

  public void onStartup(javax.servlet.ServletContext);
    descriptor: (Ljavax/servlet/ServletContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
         0: .line 68
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe method addServlet(String, ServletHttpHandlerAdapter) is undefined for the type ServletContext\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/server/adapter/AbstractReactiveWebInitializer;
    Exceptions:
      throws javax.servlet.ServletException
    MethodParameters:
                Name  Flags
      servletContext  

  protected java.lang.String getServletName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
         0: .line 84
            ldc "http-handler-adapter"
            areturn
        end local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/server/adapter/AbstractReactiveWebInitializer;

  protected org.springframework.context.ApplicationContext createApplicationContext();
    descriptor: ()Lorg/springframework/context/ApplicationContext;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
         0: .line 92
            new org.springframework.context.annotation.AnnotationConfigApplicationContext
            dup
            invokespecial org.springframework.context.annotation.AnnotationConfigApplicationContext.<init>:()V
            astore 1 /* context */
        start local 1 // org.springframework.context.annotation.AnnotationConfigApplicationContext context
         1: .line 93
            aload 0 /* this */
            invokevirtual org.springframework.web.server.adapter.AbstractReactiveWebInitializer.getConfigClasses:()[Ljava/lang/Class;
            astore 2 /* configClasses */
        start local 2 // java.lang.Class[] configClasses
         2: .line 94
            aload 2 /* configClasses */
            ldc "No Spring configuration provided through getConfigClasses()"
            invokestatic org.springframework.util.Assert.notEmpty:([Ljava/lang/Object;Ljava/lang/String;)V
         3: .line 95
            aload 1 /* context */
            aload 2 /* configClasses */
            invokevirtual org.springframework.context.annotation.AnnotationConfigApplicationContext.register:([Ljava/lang/Class;)V
         4: .line 96
            aload 1 /* context */
            areturn
        end local 2 // java.lang.Class[] configClasses
        end local 1 // org.springframework.context.annotation.AnnotationConfigApplicationContext context
        end local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/springframework/web/server/adapter/AbstractReactiveWebInitializer;
            1    5     1        context  Lorg/springframework/context/annotation/AnnotationConfigApplicationContext;
            2    5     2  configClasses  [Ljava/lang/Class;

  protected abstract java.lang.Class<?>[] getConfigClasses();
    descriptor: ()[Ljava/lang/Class;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: ()[Ljava/lang/Class<*>;

  protected void refreshApplicationContext(org.springframework.context.ApplicationContext);
    descriptor: (Lorg/springframework/context/ApplicationContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=3, args_size=2
        start local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
        start local 1 // org.springframework.context.ApplicationContext context
         0: .line 111
            aload 1 /* context */
            instanceof org.springframework.context.ConfigurableApplicationContext
            ifeq 4
         1: .line 112
            aload 1 /* context */
            checkcast org.springframework.context.ConfigurableApplicationContext
            astore 2 /* cac */
        start local 2 // org.springframework.context.ConfigurableApplicationContext cac
         2: .line 113
            aload 2 /* cac */
            invokeinterface org.springframework.context.ConfigurableApplicationContext.isActive:()Z
            ifne 4
         3: .line 114
            aload 2 /* cac */
            invokeinterface org.springframework.context.ConfigurableApplicationContext.refresh:()V
        end local 2 // org.springframework.context.ConfigurableApplicationContext cac
         4: .line 117
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.springframework.context.ApplicationContext context
        end local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/springframework/web/server/adapter/AbstractReactiveWebInitializer;
            0    5     1  context  Lorg/springframework/context/ApplicationContext;
            2    4     2      cac  Lorg/springframework/context/ConfigurableApplicationContext;
    MethodParameters:
         Name  Flags
      context  

  protected void registerCloseListener(javax.servlet.ServletContext, org.springframework.context.ApplicationContext);
    descriptor: (Ljavax/servlet/ServletContext;Lorg/springframework/context/ApplicationContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
         0: .line 130
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe method addListener(AbstractReactiveWebInitializer.ServletContextDestroyedListener) is undefined for the type ServletContext\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/server/adapter/AbstractReactiveWebInitializer;
    MethodParameters:
                    Name  Flags
      servletContext      
      applicationContext  

  protected java.lang.String getServletMapping();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
         0: .line 140
            ldc "/"
            areturn
        end local 0 // org.springframework.web.server.adapter.AbstractReactiveWebInitializer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/server/adapter/AbstractReactiveWebInitializer;
}
SourceFile: "AbstractReactiveWebInitializer.java"
NestMembers:
  org.springframework.web.server.adapter.AbstractReactiveWebInitializer$ServletContextDestroyedListener
InnerClasses:
  private ServletContextDestroyedListener = org.springframework.web.server.adapter.AbstractReactiveWebInitializer$ServletContextDestroyedListener of org.springframework.web.server.adapter.AbstractReactiveWebInitializer