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 58
            aload 0 /* this */
            invokespecial org.springframework.web.servlet.view.AbstractCachingViewResolver.<init>:()V
         1: .line 71
            aload 0 /* this */
            ldc 2147483647
            putfield org.springframework.web.servlet.view.XmlViewResolver.order:I
         2: .line 58
            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 80
            aload 0 /* this */
            aload 1 /* location */
            putfield org.springframework.web.servlet.view.XmlViewResolver.location:Lorg/springframework/core/io/Resource;
         1: .line 81
            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 89
            aload 0 /* this */
            iload 1 /* order */
            putfield org.springframework.web.servlet.view.XmlViewResolver.order:I
         1: .line 90
            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 94
            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 103
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.isCache:()Z
            ifeq 2
         1: .line 104
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.initFactory:()Lorg/springframework/beans/factory/BeanFactory;
            pop
         2: .line 106
      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 115
            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 120
            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 122
            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 124
      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 126
            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=4, locals=5, args_size=1
        start local 0 // org.springframework.web.servlet.view.XmlViewResolver this
         0: .line 136
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.cachedFactory:Lorg/springframework/context/ConfigurableApplicationContext;
            ifnull 2
         1: .line 137
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.cachedFactory:Lorg/springframework/context/ConfigurableApplicationContext;
            areturn
         2: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.obtainApplicationContext:()Lorg/springframework/context/ApplicationContext;
            astore 1 /* applicationContext */
        start local 1 // org.springframework.context.ApplicationContext applicationContext
         3: .line 142
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.location:Lorg/springframework/core/io/Resource;
            astore 2 /* actualLocation */
        start local 2 // org.springframework.core.io.Resource actualLocation
         4: .line 143
            aload 2 /* actualLocation */
            ifnonnull 6
         5: .line 144
            aload 1 /* applicationContext */
            ldc "/WEB-INF/views.xml"
            invokeinterface org.springframework.context.ApplicationContext.getResource:(Ljava/lang/String;)Lorg/springframework/core/io/Resource;
            astore 2 /* actualLocation */
         6: .line 148
      StackMap locals: org.springframework.context.ApplicationContext org.springframework.core.io.Resource
      StackMap stack:
            new org.springframework.web.context.support.GenericWebApplicationContext
            dup
            invokespecial org.springframework.web.context.support.GenericWebApplicationContext.<init>:()V
            astore 3 /* factory */
        start local 3 // org.springframework.web.context.support.GenericWebApplicationContext factory
         7: .line 149
            aload 3 /* factory */
            aload 1 /* applicationContext */
            invokevirtual org.springframework.web.context.support.GenericWebApplicationContext.setParent:(Lorg/springframework/context/ApplicationContext;)V
         8: .line 150
            aload 3 /* factory */
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.getServletContext:()Ljavax/servlet/ServletContext;
            invokevirtual org.springframework.web.context.support.GenericWebApplicationContext.setServletContext:(Ljavax/servlet/ServletContext;)V
         9: .line 153
            new org.springframework.beans.factory.xml.XmlBeanDefinitionReader
            dup
            aload 3 /* factory */
            invokespecial org.springframework.beans.factory.xml.XmlBeanDefinitionReader.<init>:(Lorg/springframework/beans/factory/support/BeanDefinitionRegistry;)V
            astore 4 /* reader */
        start local 4 // org.springframework.beans.factory.xml.XmlBeanDefinitionReader reader
        10: .line 154
            aload 4 /* reader */
            aload 1 /* applicationContext */
            invokeinterface org.springframework.context.ApplicationContext.getEnvironment:()Lorg/springframework/core/env/Environment;
            invokevirtual org.springframework.beans.factory.xml.XmlBeanDefinitionReader.setEnvironment:(Lorg/springframework/core/env/Environment;)V
        11: .line 155
            aload 4 /* reader */
            new org.springframework.beans.factory.xml.ResourceEntityResolver
            dup
            aload 1 /* applicationContext */
            invokespecial org.springframework.beans.factory.xml.ResourceEntityResolver.<init>:(Lorg/springframework/core/io/ResourceLoader;)V
            invokevirtual org.springframework.beans.factory.xml.XmlBeanDefinitionReader.setEntityResolver:(Lorg/xml/sax/EntityResolver;)V
        12: .line 156
            aload 4 /* reader */
            aload 2 /* actualLocation */
            invokevirtual org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions:(Lorg/springframework/core/io/Resource;)I
            pop
        13: .line 158
            aload 3 /* factory */
            invokevirtual org.springframework.web.context.support.GenericWebApplicationContext.refresh:()V
        14: .line 160
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.XmlViewResolver.isCache:()Z
            ifeq 16
        15: .line 161
            aload 0 /* this */
            aload 3 /* factory */
            putfield org.springframework.web.servlet.view.XmlViewResolver.cachedFactory:Lorg/springframework/context/ConfigurableApplicationContext;
        16: .line 163
      StackMap locals: org.springframework.web.context.support.GenericWebApplicationContext org.springframework.beans.factory.xml.XmlBeanDefinitionReader
      StackMap stack:
            aload 3 /* factory */
            areturn
        end local 4 // org.springframework.beans.factory.xml.XmlBeanDefinitionReader reader
        end local 3 // org.springframework.web.context.support.GenericWebApplicationContext factory
        end local 2 // org.springframework.core.io.Resource actualLocation
        end local 1 // org.springframework.context.ApplicationContext applicationContext
        end local 0 // org.springframework.web.servlet.view.XmlViewResolver this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   17     0                this  Lorg/springframework/web/servlet/view/XmlViewResolver;
            3   17     1  applicationContext  Lorg/springframework/context/ApplicationContext;
            4   17     2      actualLocation  Lorg/springframework/core/io/Resource;
            7   17     3             factory  Lorg/springframework/web/context/support/GenericWebApplicationContext;
           10   17     4              reader  Lorg/springframework/beans/factory/xml/XmlBeanDefinitionReader;
    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 172
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.cachedFactory:Lorg/springframework/context/ConfigurableApplicationContext;
            ifnull 2
         1: .line 173
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.XmlViewResolver.cachedFactory:Lorg/springframework/context/ConfigurableApplicationContext;
            invokeinterface org.springframework.context.ConfigurableApplicationContext.close:()V
         2: .line 175
      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"