public class org.springframework.web.servlet.view.XmlViewResolver extends org.springframework.web.servlet.view.AbstractCachingViewResolver implements org.springframework.core.Ordered, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.servlet.view.XmlViewResolver
  super_class: org.springframework.web.servlet.view.AbstractCachingViewResolver
{
  public static final java.lang.String DEFAULT_LOCATION;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "/WEB-INF/views.xml"

  private org.springframework.core.io.Resource location;
    descriptor: Lorg/springframework/core/io/Resource;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private org.springframework.context.ConfigurableApplicationContext cachedFactory;
    descriptor: Lorg/springframework/context/ConfigurableApplicationContext;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private int order;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
         0: .line 61
            aload 0 /* this */
            invokespecial org.springframework.web.servlet.view.AbstractCachingViewResolver.<init>:()V
         1: .line 74
            aload 0 /* this */
            ldc 2147483647
            putfield org.springframework.web.servlet.view.XmlViewResolver.order:I
         2: .line 61
            return
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/web/servlet/view/XmlViewResolver;

  public void setLocation(org.springframework.core.io.Resource);
    descriptor: (Lorg/springframework/core/io/Resource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
        start local 1 // org.springframework.core.io.Resource location
         0: .line 83
            aload 0 /* this */
            aload 1 /* location */
            putfield org.springframework.web.servlet.view.XmlViewResolver.location:Lorg/springframework/core/io/Resource;
         1: .line 84
            return
        end local 1 // org.springframework.core.io.Resource location
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/springframework/web/servlet/view/XmlViewResolver;
            0    2     1  location  Lorg/springframework/core/io/Resource;
    MethodParameters:
          Name  Flags
      location  

  public void setOrder(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
        start local 1 // int order
         0: .line 92
            aload 0 /* this */
            iload 1 /* order */
            putfield org.springframework.web.servlet.view.XmlViewResolver.order:I
         1: .line 93
            return
        end local 1 // int order
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/springframework/web/servlet/view/XmlViewResolver;
            0    2     1  order  I
    MethodParameters:
       Name  Flags
      order  

  public int getOrder();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
         0: .line 97
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.order:I
            ireturn
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/view/XmlViewResolver;

  public void afterPropertiesSet();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
         0: .line 106
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.isCache:()Z
            ifeq 2
         1: .line 107
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.initFactory:()Lorg/springframework/beans/factory/BeanFactory;
            pop
         2: .line 109
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/web/servlet/view/XmlViewResolver;
    Exceptions:
      throws org.springframework.beans.BeansException

  protected java.lang.Object getCacheKey(java.lang.String, java.util.Locale);
    descriptor: (Ljava/lang/String;Ljava/util/Locale;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
        start local 1 // java.lang.String viewName
        start local 2 // java.util.Locale locale
         0: .line 118
            aload 1 /* viewName */
            areturn
        end local 2 // java.util.Locale locale
        end local 1 // java.lang.String viewName
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/springframework/web/servlet/view/XmlViewResolver;
            0    1     1  viewName  Ljava/lang/String;
            0    1     2    locale  Ljava/util/Locale;
    MethodParameters:
          Name  Flags
      viewName  
      locale    

  protected org.springframework.web.servlet.View loadView(java.lang.String, java.util.Locale);
    descriptor: (Ljava/lang/String;Ljava/util/Locale;)Lorg/springframework/web/servlet/View;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
        start local 1 // java.lang.String viewName
        start local 2 // java.util.Locale locale
         0: .line 123
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.initFactory:()Lorg/springframework/beans/factory/BeanFactory;
            astore 3 /* factory */
        start local 3 // org.springframework.beans.factory.BeanFactory factory
         1: .line 125
            aload 3 /* factory */
            aload 1 /* viewName */
            ldc Lorg/springframework/web/servlet/View;
            invokeinterface org.springframework.beans.factory.BeanFactory.getBean:(Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object;
            checkcast org.springframework.web.servlet.View
         2: areturn
         3: .line 127
      StackMap locals: org.springframework.web.servlet.view.XmlViewResolver java.lang.String java.util.Locale org.springframework.beans.factory.BeanFactory
      StackMap stack: org.springframework.beans.factory.NoSuchBeanDefinitionException
            pop
         4: .line 129
            aconst_null
            areturn
        end local 3 // org.springframework.beans.factory.BeanFactory factory
        end local 2 // java.util.Locale locale
        end local 1 // java.lang.String viewName
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/springframework/web/servlet/view/XmlViewResolver;
            0    5     1  viewName  Ljava/lang/String;
            0    5     2    locale  Ljava/util/Locale;
            1    5     3   factory  Lorg/springframework/beans/factory/BeanFactory;
      Exception table:
        from    to  target  type
           1     2       3  Class org.springframework.beans.factory.NoSuchBeanDefinitionException
    Exceptions:
      throws org.springframework.beans.BeansException
    MethodParameters:
          Name  Flags
      viewName  
      locale    

  protected synchronized org.springframework.beans.factory.BeanFactory initFactory();
    descriptor: ()Lorg/springframework/beans/factory/BeanFactory;
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
         0: .line 153
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe method getServletContext() from the type WebApplicationObjectSupport refers to the missing type ServletContext\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/view/XmlViewResolver;
    Exceptions:
      throws org.springframework.beans.BeansException

  public void destroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
         0: .line 175
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.cachedFactory:Lorg/springframework/context/ConfigurableApplicationContext;
            ifnull 2
         1: .line 176
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.cachedFactory:Lorg/springframework/context/ConfigurableApplicationContext;
            invokeinterface org.springframework.context.ConfigurableApplicationContext.close:()V
         2: .line 178
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/web/servlet/view/XmlViewResolver;
    Exceptions:
      throws org.springframework.beans.BeansException
}
SourceFile: "XmlViewResolver.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()