public class org.springframework.web.servlet.view.ContentNegotiatingViewResolver extends org.springframework.web.context.support.WebApplicationObjectSupport implements org.springframework.web.servlet.ViewResolver, org.springframework.core.Ordered, org.springframework.beans.factory.InitializingBean
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.servlet.view.ContentNegotiatingViewResolver
  super_class: org.springframework.web.context.support.WebApplicationObjectSupport
{
  private org.springframework.web.accept.ContentNegotiationManager contentNegotiationManager;
    descriptor: Lorg/springframework/web/accept/ContentNegotiationManager;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final org.springframework.web.accept.ContentNegotiationManagerFactoryBean cnmFactoryBean;
    descriptor: Lorg/springframework/web/accept/ContentNegotiationManagerFactoryBean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean useNotAcceptableStatusCode;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<org.springframework.web.servlet.View> defaultViews;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/springframework/web/servlet/View;>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private java.util.List<org.springframework.web.servlet.ViewResolver> viewResolvers;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/springframework/web/servlet/ViewResolver;>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

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

  private static final org.springframework.web.servlet.View NOT_ACCEPTABLE_VIEW;
    descriptor: Lorg/springframework/web/servlet/View;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 359
            new org.springframework.web.servlet.view.ContentNegotiatingViewResolver$1
            dup
            invokespecial org.springframework.web.servlet.view.ContentNegotiatingViewResolver$1.<init>:()V
            putstatic org.springframework.web.servlet.view.ContentNegotiatingViewResolver.NOT_ACCEPTABLE_VIEW:Lorg/springframework/web/servlet/View;
         1: .line 371
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
         0: .line 88
            aload 0 /* this */
            invokespecial org.springframework.web.context.support.WebApplicationObjectSupport.<init>:()V
         1: .line 94
            aload 0 /* this */
            new org.springframework.web.accept.ContentNegotiationManagerFactoryBean
            dup
            invokespecial org.springframework.web.accept.ContentNegotiationManagerFactoryBean.<init>:()V
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.cnmFactoryBean:Lorg/springframework/web/accept/ContentNegotiationManagerFactoryBean;
         2: .line 96
            aload 0 /* this */
            iconst_0
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.useNotAcceptableStatusCode:Z
         3: .line 104
            aload 0 /* this */
            ldc -2147483648
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.order:I
         4: .line 88
            return
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;

  public void setContentNegotiationManager(org.springframework.web.accept.ContentNegotiationManager);
    descriptor: (Lorg/springframework/web/accept/ContentNegotiationManager;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // org.springframework.web.accept.ContentNegotiationManager contentNegotiationManager
         0: .line 114
            aload 0 /* this */
            aload 1 /* contentNegotiationManager */
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
         1: .line 115
            return
        end local 1 // org.springframework.web.accept.ContentNegotiationManager contentNegotiationManager
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0    2     0                       this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0    2     1  contentNegotiationManager  Lorg/springframework/web/accept/ContentNegotiationManager;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                           Name  Flags
      contentNegotiationManager  

  public org.springframework.web.accept.ContentNegotiationManager getContentNegotiationManager();
    descriptor: ()Lorg/springframework/web/accept/ContentNegotiationManager;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
         0: .line 123
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
            areturn
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void setUseNotAcceptableStatusCode(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // boolean useNotAcceptableStatusCode
         0: .line 136
            aload 0 /* this */
            iload 1 /* useNotAcceptableStatusCode */
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.useNotAcceptableStatusCode:Z
         1: .line 137
            return
        end local 1 // boolean useNotAcceptableStatusCode
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0    2     0                        this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0    2     1  useNotAcceptableStatusCode  Z
    MethodParameters:
                            Name  Flags
      useNotAcceptableStatusCode  

  public boolean isUseNotAcceptableStatusCode();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
         0: .line 143
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.useNotAcceptableStatusCode:Z
            ireturn
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;

  public void setDefaultViews(java.util.List<org.springframework.web.servlet.View>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // java.util.List defaultViews
         0: .line 151
            aload 0 /* this */
            aload 1 /* defaultViews */
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.defaultViews:Ljava/util/List;
         1: .line 152
            return
        end local 1 // java.util.List defaultViews
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0    2     1  defaultViews  Ljava/util/List<Lorg/springframework/web/servlet/View;>;
    Signature: (Ljava/util/List<Lorg/springframework/web/servlet/View;>;)V
    MethodParameters:
              Name  Flags
      defaultViews  

  public java.util.List<org.springframework.web.servlet.View> getDefaultViews();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
         0: .line 155
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.defaultViews:Ljava/util/List;
            ifnull 1
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.defaultViews:Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            goto 2
         1: .line 156
      StackMap locals:
      StackMap stack:
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
         2: .line 155
      StackMap locals:
      StackMap stack: java.util.List
            areturn
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
    Signature: ()Ljava/util/List<Lorg/springframework/web/servlet/View;>;

  public void setViewResolvers(java.util.List<org.springframework.web.servlet.ViewResolver>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // java.util.List viewResolvers
         0: .line 164
            aload 0 /* this */
            aload 1 /* viewResolvers */
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
         1: .line 165
            return
        end local 1 // java.util.List viewResolvers
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0    2     1  viewResolvers  Ljava/util/List<Lorg/springframework/web/servlet/ViewResolver;>;
    Signature: (Ljava/util/List<Lorg/springframework/web/servlet/ViewResolver;>;)V
    MethodParameters:
               Name  Flags
      viewResolvers  

  public java.util.List<org.springframework.web.servlet.ViewResolver> getViewResolvers();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
         0: .line 168
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            ifnull 1
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            goto 2
         1: .line 169
      StackMap locals:
      StackMap stack:
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
         2: .line 168
      StackMap locals:
      StackMap stack: java.util.List
            areturn
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
    Signature: ()Ljava/util/List<Lorg/springframework/web/servlet/ViewResolver;>;

  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.ContentNegotiatingViewResolver this
        start local 1 // int order
         0: .line 173
            aload 0 /* this */
            iload 1 /* order */
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.order:I
         1: .line 174
            return
        end local 1 // int order
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            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.ContentNegotiatingViewResolver this
         0: .line 178
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.order:I
            ireturn
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;

  protected void initServletContext(javax.servlet.ServletContext);
    descriptor: (Ljavax/servlet/ServletContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // javax.servlet.ServletContext servletContext
         0: .line 185
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.ContentNegotiatingViewResolver.obtainApplicationContext:()Lorg/springframework/context/ApplicationContext;
            ldc Lorg/springframework/web/servlet/ViewResolver;
            invokestatic org.springframework.beans.factory.BeanFactoryUtils.beansOfTypeIncludingAncestors:(Lorg/springframework/beans/factory/ListableBeanFactory;Ljava/lang/Class;)Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
         1: .line 184
            astore 2 /* matchingBeans */
        start local 2 // java.util.Collection matchingBeans
         2: .line 186
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            ifnonnull 10
         3: .line 187
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 2 /* matchingBeans */
            invokeinterface java.util.Collection.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
         4: .line 188
            aload 2 /* matchingBeans */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 8
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver javax.servlet.ServletContext java.util.Collection top java.util.Iterator
      StackMap stack:
         5: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.servlet.ViewResolver
            astore 3 /* viewResolver */
        start local 3 // org.springframework.web.servlet.ViewResolver viewResolver
         6: .line 189
            aload 0 /* this */
            aload 3 /* viewResolver */
            if_acmpeq 8
         7: .line 190
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            aload 3 /* viewResolver */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // org.springframework.web.servlet.ViewResolver viewResolver
         8: .line 188
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
         9: .line 193
            goto 19
        10: .line 195
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver javax.servlet.ServletContext java.util.Collection
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        11: goto 18
        12: .line 196
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.springframework.web.servlet.ViewResolver
            astore 4 /* vr */
        start local 4 // org.springframework.web.servlet.ViewResolver vr
        13: .line 197
            aload 2 /* matchingBeans */
            aload 4 /* vr */
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifeq 15
        14: .line 198
            goto 17
        15: .line 200
      StackMap locals: org.springframework.web.servlet.ViewResolver
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 4 /* vr */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* name */
        start local 5 // java.lang.String name
        16: .line 201
            aload 0 /* this */
            invokevirtual org.springframework.web.servlet.view.ContentNegotiatingViewResolver.obtainApplicationContext:()Lorg/springframework/context/ApplicationContext;
            invokeinterface org.springframework.context.ApplicationContext.getAutowireCapableBeanFactory:()Lorg/springframework/beans/factory/config/AutowireCapableBeanFactory;
            aload 4 /* vr */
            aload 5 /* name */
            invokeinterface org.springframework.beans.factory.config.AutowireCapableBeanFactory.initializeBean:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
        end local 5 // java.lang.String name
        end local 4 // org.springframework.web.servlet.ViewResolver vr
        17: .line 195
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 3 /* i */
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 12
        end local 3 // int i
        19: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            invokestatic org.springframework.core.annotation.AnnotationAwareOrderComparator.sort:(Ljava/util/List;)V
        20: .line 206
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.cnmFactoryBean:Lorg/springframework/web/accept/ContentNegotiationManagerFactoryBean;
            aload 1 /* servletContext */
            invokevirtual org.springframework.web.accept.ContentNegotiationManagerFactoryBean.setServletContext:(Ljavax/servlet/ServletContext;)V
        21: .line 207
            return
        end local 2 // java.util.Collection matchingBeans
        end local 1 // javax.servlet.ServletContext servletContext
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   22     0            this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0   22     1  servletContext  Ljavax/servlet/ServletContext;
            2   22     2   matchingBeans  Ljava/util/Collection<Lorg/springframework/web/servlet/ViewResolver;>;
            6    8     3    viewResolver  Lorg/springframework/web/servlet/ViewResolver;
           11   19     3               i  I
           13   17     4              vr  Lorg/springframework/web/servlet/ViewResolver;
           16   17     5            name  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      servletContext  

  public void afterPropertiesSet();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
         0: .line 211
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
            ifnonnull 2
         1: .line 212
            aload 0 /* this */
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.cnmFactoryBean:Lorg/springframework/web/accept/ContentNegotiationManagerFactoryBean;
            invokevirtual org.springframework.web.accept.ContentNegotiationManagerFactoryBean.build:()Lorg/springframework/web/accept/ContentNegotiationManager;
            putfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
         2: .line 214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            ifnull 3
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 4
         3: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            ldc "No ViewResolvers configured"
            invokeinterface org.apache.commons.logging.Log.warn:(Ljava/lang/Object;)V
         4: .line 217
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;

  public org.springframework.web.servlet.View resolveViewName(java.lang.String, java.util.Locale);
    descriptor: (Ljava/lang/String;Ljava/util/Locale;)Lorg/springframework/web/servlet/View;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // java.lang.String viewName
        start local 2 // java.util.Locale locale
         0: .line 223
            invokestatic org.springframework.web.context.request.RequestContextHolder.getRequestAttributes:()Lorg/springframework/web/context/request/RequestAttributes;
            astore 3 /* attrs */
        start local 3 // org.springframework.web.context.request.RequestAttributes attrs
         1: .line 224
            aload 3 /* attrs */
            instanceof org.springframework.web.context.request.ServletRequestAttributes
            ldc "No current ServletRequestAttributes"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         2: .line 225
            aload 0 /* this */
            aload 3 /* attrs */
            checkcast org.springframework.web.context.request.ServletRequestAttributes
            invokevirtual org.springframework.web.context.request.ServletRequestAttributes.getRequest:()Ljavax/servlet/http/HttpServletRequest;
            invokevirtual org.springframework.web.servlet.view.ContentNegotiatingViewResolver.getMediaTypes:(Ljavax/servlet/http/HttpServletRequest;)Ljava/util/List;
            astore 4 /* requestedMediaTypes */
        start local 4 // java.util.List requestedMediaTypes
         3: .line 226
            aload 4 /* requestedMediaTypes */
            ifnull 8
         4: .line 227
            aload 0 /* this */
            aload 1 /* viewName */
            aload 2 /* locale */
            aload 4 /* requestedMediaTypes */
            invokevirtual org.springframework.web.servlet.view.ContentNegotiatingViewResolver.getCandidateViews:(Ljava/lang/String;Ljava/util/Locale;Ljava/util/List;)Ljava/util/List;
            astore 5 /* candidateViews */
        start local 5 // java.util.List candidateViews
         5: .line 228
            aload 0 /* this */
            aload 5 /* candidateViews */
            aload 4 /* requestedMediaTypes */
            aload 3 /* attrs */
            invokevirtual org.springframework.web.servlet.view.ContentNegotiatingViewResolver.getBestView:(Ljava/util/List;Ljava/util/List;Lorg/springframework/web/context/request/RequestAttributes;)Lorg/springframework/web/servlet/View;
            astore 6 /* bestView */
        start local 6 // org.springframework.web.servlet.View bestView
         6: .line 229
            aload 6 /* bestView */
            ifnull 8
         7: .line 230
            aload 6 /* bestView */
            areturn
        end local 6 // org.springframework.web.servlet.View bestView
        end local 5 // java.util.List candidateViews
         8: .line 234
      StackMap locals: org.springframework.web.context.request.RequestAttributes java.util.List
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 10
            aload 4 /* requestedMediaTypes */
            ifnull 10
         9: .line 235
            new java.lang.StringBuilder
            dup
            ldc " given "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* requestedMediaTypes */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            goto 11
      StackMap locals:
      StackMap stack:
        10: ldc ""
        11: .line 234
      StackMap locals:
      StackMap stack: java.lang.String
            astore 5 /* mediaTypeInfo */
        start local 5 // java.lang.String mediaTypeInfo
        12: .line 237
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.useNotAcceptableStatusCode:Z
            ifeq 16
        13: .line 238
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 15
        14: .line 239
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Using 406 NOT_ACCEPTABLE"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* mediaTypeInfo */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;)V
        15: .line 241
      StackMap locals: java.lang.String
      StackMap stack:
            getstatic org.springframework.web.servlet.view.ContentNegotiatingViewResolver.NOT_ACCEPTABLE_VIEW:Lorg/springframework/web/servlet/View;
            areturn
        16: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "View remains unresolved"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* mediaTypeInfo */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;)V
        17: .line 245
            aconst_null
            areturn
        end local 5 // java.lang.String mediaTypeInfo
        end local 4 // java.util.List requestedMediaTypes
        end local 3 // org.springframework.web.context.request.RequestAttributes attrs
        end local 2 // java.util.Locale locale
        end local 1 // java.lang.String viewName
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   18     0                 this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0   18     1             viewName  Ljava/lang/String;
            0   18     2               locale  Ljava/util/Locale;
            1   18     3                attrs  Lorg/springframework/web/context/request/RequestAttributes;
            3   18     4  requestedMediaTypes  Ljava/util/List<Lorg/springframework/http/MediaType;>;
            5    8     5       candidateViews  Ljava/util/List<Lorg/springframework/web/servlet/View;>;
            6    8     6             bestView  Lorg/springframework/web/servlet/View;
           12   18     5        mediaTypeInfo  Ljava/lang/String;
    Exceptions:
      throws java.lang.Exception
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
          Name  Flags
      viewName  
      locale    

  protected java.util.List<org.springframework.http.MediaType> getMediaTypes(javax.servlet.http.HttpServletRequest);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;)Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=10, args_size=2
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // javax.servlet.http.HttpServletRequest request
         0: .line 256
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
            ifnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "No ContentNegotiationManager set"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         3: .line 258
            new org.springframework.web.context.request.ServletWebRequest
            dup
            aload 1 /* request */
            invokespecial org.springframework.web.context.request.ServletWebRequest.<init>:(Ljavax/servlet/http/HttpServletRequest;)V
            astore 2 /* webRequest */
        start local 2 // org.springframework.web.context.request.ServletWebRequest webRequest
         4: .line 259
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
            aload 2 /* webRequest */
            invokevirtual org.springframework.web.accept.ContentNegotiationManager.resolveMediaTypes:(Lorg/springframework/web/context/request/NativeWebRequest;)Ljava/util/List;
            astore 3 /* acceptableMediaTypes */
        start local 3 // java.util.List acceptableMediaTypes
         5: .line 260
            aload 0 /* this */
            aload 1 /* request */
            invokevirtual org.springframework.web.servlet.view.ContentNegotiatingViewResolver.getProducibleMediaTypes:(Ljavax/servlet/http/HttpServletRequest;)Ljava/util/List;
            astore 4 /* producibleMediaTypes */
        start local 4 // java.util.List producibleMediaTypes
         6: .line 261
            new java.util.LinkedHashSet
            dup
            invokespecial java.util.LinkedHashSet.<init>:()V
            astore 5 /* compatibleMediaTypes */
        start local 5 // java.util.Set compatibleMediaTypes
         7: .line 262
            aload 3 /* acceptableMediaTypes */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 14
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver javax.servlet.http.HttpServletRequest org.springframework.web.context.request.ServletWebRequest java.util.List java.util.List java.util.Set top java.util.Iterator
      StackMap stack:
         8: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.http.MediaType
            astore 6 /* acceptable */
        start local 6 // org.springframework.http.MediaType acceptable
         9: .line 263
            aload 4 /* producibleMediaTypes */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 9
            goto 13
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver javax.servlet.http.HttpServletRequest org.springframework.web.context.request.ServletWebRequest java.util.List java.util.List java.util.Set org.springframework.http.MediaType java.util.Iterator top java.util.Iterator
      StackMap stack:
        10: aload 9
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.http.MediaType
            astore 8 /* producible */
        start local 8 // org.springframework.http.MediaType producible
        11: .line 264
            aload 6 /* acceptable */
            aload 8 /* producible */
            invokevirtual org.springframework.http.MediaType.isCompatibleWith:(Lorg/springframework/http/MediaType;)Z
            ifeq 13
        12: .line 265
            aload 5 /* compatibleMediaTypes */
            aload 0 /* this */
            aload 6 /* acceptable */
            aload 8 /* producible */
            invokevirtual org.springframework.web.servlet.view.ContentNegotiatingViewResolver.getMostSpecificMediaType:(Lorg/springframework/http/MediaType;Lorg/springframework/http/MediaType;)Lorg/springframework/http/MediaType;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        end local 8 // org.springframework.http.MediaType producible
        13: .line 263
      StackMap locals:
      StackMap stack:
            aload 9
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        end local 6 // org.springframework.http.MediaType acceptable
        14: .line 262
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver javax.servlet.http.HttpServletRequest org.springframework.web.context.request.ServletWebRequest java.util.List java.util.List java.util.Set top java.util.Iterator
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        15: .line 269
            new java.util.ArrayList
            dup
            aload 5 /* compatibleMediaTypes */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 6 /* selectedMediaTypes */
        start local 6 // java.util.List selectedMediaTypes
        16: .line 270
            aload 6 /* selectedMediaTypes */
            invokestatic org.springframework.http.MediaType.sortBySpecificityAndQuality:(Ljava/util/List;)V
        17: .line 271
            aload 6 /* selectedMediaTypes */
        18: areturn
        end local 6 // java.util.List selectedMediaTypes
        end local 5 // java.util.Set compatibleMediaTypes
        end local 4 // java.util.List producibleMediaTypes
        end local 3 // java.util.List acceptableMediaTypes
        end local 2 // org.springframework.web.context.request.ServletWebRequest webRequest
        19: .line 273
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver javax.servlet.http.HttpServletRequest
      StackMap stack: org.springframework.web.HttpMediaTypeNotAcceptableException
            astore 2 /* ex */
        start local 2 // org.springframework.web.HttpMediaTypeNotAcceptableException ex
        20: .line 274
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 22
        21: .line 275
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            aload 2 /* ex */
            invokevirtual org.springframework.web.HttpMediaTypeNotAcceptableException.getMessage:()Ljava/lang/String;
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;)V
        22: .line 277
      StackMap locals: org.springframework.web.HttpMediaTypeNotAcceptableException
      StackMap stack:
            aconst_null
            areturn
        end local 2 // org.springframework.web.HttpMediaTypeNotAcceptableException ex
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   23     0                  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0   23     1               request  Ljavax/servlet/http/HttpServletRequest;
            4   19     2            webRequest  Lorg/springframework/web/context/request/ServletWebRequest;
            5   19     3  acceptableMediaTypes  Ljava/util/List<Lorg/springframework/http/MediaType;>;
            6   19     4  producibleMediaTypes  Ljava/util/List<Lorg/springframework/http/MediaType;>;
            7   19     5  compatibleMediaTypes  Ljava/util/Set<Lorg/springframework/http/MediaType;>;
            9   14     6            acceptable  Lorg/springframework/http/MediaType;
           11   13     8            producible  Lorg/springframework/http/MediaType;
           16   19     6    selectedMediaTypes  Ljava/util/List<Lorg/springframework/http/MediaType;>;
           20   23     2                    ex  Lorg/springframework/web/HttpMediaTypeNotAcceptableException;
      Exception table:
        from    to  target  type
           3    18      19  Class org.springframework.web.HttpMediaTypeNotAcceptableException
    Signature: (Ljavax/servlet/http/HttpServletRequest;)Ljava/util/List<Lorg/springframework/http/MediaType;>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
         Name  Flags
      request  

  private java.util.List<org.springframework.http.MediaType> getProducibleMediaTypes(javax.servlet.http.HttpServletRequest);
    descriptor: (Ljavax/servlet/http/HttpServletRequest;)Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // javax.servlet.http.HttpServletRequest request
         0: .line 284
            aload 1 /* request */
            getstatic org.springframework.web.servlet.HandlerMapping.PRODUCIBLE_MEDIA_TYPES_ATTRIBUTE:Ljava/lang/String;
            invokeinterface javax.servlet.http.HttpServletRequest.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
         1: .line 283
            checkcast java.util.Set
            astore 2 /* mediaTypes */
        start local 2 // java.util.Set mediaTypes
         2: .line 285
            aload 2 /* mediaTypes */
            invokestatic org.springframework.util.CollectionUtils.isEmpty:(Ljava/util/Collection;)Z
            ifne 4
         3: .line 286
            new java.util.ArrayList
            dup
            aload 2 /* mediaTypes */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            areturn
         4: .line 289
      StackMap locals: java.util.Set
      StackMap stack:
            getstatic org.springframework.http.MediaType.ALL:Lorg/springframework/http/MediaType;
            invokestatic java.util.Collections.singletonList:(Ljava/lang/Object;)Ljava/util/List;
            areturn
        end local 2 // java.util.Set mediaTypes
        end local 1 // javax.servlet.http.HttpServletRequest request
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0    5     1     request  Ljavax/servlet/http/HttpServletRequest;
            2    5     2  mediaTypes  Ljava/util/Set<Lorg/springframework/http/MediaType;>;
    Signature: (Ljavax/servlet/http/HttpServletRequest;)Ljava/util/List<Lorg/springframework/http/MediaType;>;
    MethodParameters:
         Name  Flags
      request  

  private org.springframework.http.MediaType getMostSpecificMediaType(org.springframework.http.MediaType, org.springframework.http.MediaType);
    descriptor: (Lorg/springframework/http/MediaType;Lorg/springframework/http/MediaType;)Lorg/springframework/http/MediaType;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // org.springframework.http.MediaType acceptType
        start local 2 // org.springframework.http.MediaType produceType
         0: .line 298
            aload 2 /* produceType */
            aload 1 /* acceptType */
            invokevirtual org.springframework.http.MediaType.copyQualityValue:(Lorg/springframework/http/MediaType;)Lorg/springframework/http/MediaType;
            astore 2 /* produceType */
         1: .line 299
            getstatic org.springframework.http.MediaType.SPECIFICITY_COMPARATOR:Ljava/util/Comparator;
            aload 1 /* acceptType */
            aload 2 /* produceType */
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifge 2
            aload 1 /* acceptType */
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 2 /* produceType */
      StackMap locals:
      StackMap stack: org.springframework.http.MediaType
         3: areturn
        end local 2 // org.springframework.http.MediaType produceType
        end local 1 // org.springframework.http.MediaType acceptType
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0    4     1   acceptType  Lorg/springframework/http/MediaType;
            0    4     2  produceType  Lorg/springframework/http/MediaType;
    MethodParameters:
             Name  Flags
      acceptType   
      produceType  

  private java.util.List<org.springframework.web.servlet.View> getCandidateViews(java.lang.String, java.util.Locale, java.util.List<org.springframework.http.MediaType>);
    descriptor: (Ljava/lang/String;Ljava/util/Locale;Ljava/util/List;)Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=14, args_size=4
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // java.lang.String viewName
        start local 2 // java.util.Locale locale
        start local 3 // java.util.List requestedMediaTypes
         0: .line 305
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* candidateViews */
        start local 4 // java.util.List candidateViews
         1: .line 306
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            ifnull 22
         2: .line 307
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
            ifnull 3
            iconst_1
            goto 4
      StackMap locals: java.util.List
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: ldc "No ContentNegotiationManager set"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         5: .line 308
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.viewResolvers:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 21
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.lang.String java.util.Locale java.util.List java.util.List top java.util.Iterator
      StackMap stack:
         6: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.servlet.ViewResolver
            astore 5 /* viewResolver */
        start local 5 // org.springframework.web.servlet.ViewResolver viewResolver
         7: .line 309
            aload 5 /* viewResolver */
            aload 1 /* viewName */
            aload 2 /* locale */
            invokeinterface org.springframework.web.servlet.ViewResolver.resolveViewName:(Ljava/lang/String;Ljava/util/Locale;)Lorg/springframework/web/servlet/View;
            astore 7 /* view */
        start local 7 // org.springframework.web.servlet.View view
         8: .line 310
            aload 7 /* view */
            ifnull 10
         9: .line 311
            aload 4 /* candidateViews */
            aload 7 /* view */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        10: .line 313
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.lang.String java.util.Locale java.util.List java.util.List org.springframework.web.servlet.ViewResolver java.util.Iterator org.springframework.web.servlet.View
      StackMap stack:
            aload 3 /* requestedMediaTypes */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 9
            goto 20
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.lang.String java.util.Locale java.util.List java.util.List org.springframework.web.servlet.ViewResolver java.util.Iterator org.springframework.web.servlet.View top java.util.Iterator
      StackMap stack:
        11: aload 9
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.http.MediaType
            astore 8 /* requestedMediaType */
        start local 8 // org.springframework.http.MediaType requestedMediaType
        12: .line 314
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.contentNegotiationManager:Lorg/springframework/web/accept/ContentNegotiationManager;
            aload 8 /* requestedMediaType */
            invokevirtual org.springframework.web.accept.ContentNegotiationManager.resolveFileExtensions:(Lorg/springframework/http/MediaType;)Ljava/util/List;
            astore 10 /* extensions */
        start local 10 // java.util.List extensions
        13: .line 315
            aload 10 /* extensions */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 12
            goto 19
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.lang.String java.util.Locale java.util.List java.util.List org.springframework.web.servlet.ViewResolver java.util.Iterator org.springframework.web.servlet.View org.springframework.http.MediaType java.util.Iterator java.util.List top java.util.Iterator
      StackMap stack:
        14: aload 12
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 11 /* extension */
        start local 11 // java.lang.String extension
        15: .line 316
            new java.lang.StringBuilder
            dup
            aload 1 /* viewName */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 46
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 11 /* extension */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 13 /* viewNameWithExtension */
        start local 13 // java.lang.String viewNameWithExtension
        16: .line 317
            aload 5 /* viewResolver */
            aload 13 /* viewNameWithExtension */
            aload 2 /* locale */
            invokeinterface org.springframework.web.servlet.ViewResolver.resolveViewName:(Ljava/lang/String;Ljava/util/Locale;)Lorg/springframework/web/servlet/View;
            astore 7 /* view */
        17: .line 318
            aload 7 /* view */
            ifnull 19
        18: .line 319
            aload 4 /* candidateViews */
            aload 7 /* view */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 13 // java.lang.String viewNameWithExtension
        end local 11 // java.lang.String extension
        19: .line 315
      StackMap locals:
      StackMap stack:
            aload 12
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
        end local 10 // java.util.List extensions
        end local 8 // org.springframework.http.MediaType requestedMediaType
        20: .line 313
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.lang.String java.util.Locale java.util.List java.util.List org.springframework.web.servlet.ViewResolver java.util.Iterator org.springframework.web.servlet.View top java.util.Iterator
      StackMap stack:
            aload 9
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 11
        end local 7 // org.springframework.web.servlet.View view
        end local 5 // org.springframework.web.servlet.ViewResolver viewResolver
        21: .line 308
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.lang.String java.util.Locale java.util.List java.util.List top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        22: .line 325
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.lang.String java.util.Locale java.util.List java.util.List
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.defaultViews:Ljava/util/List;
            invokestatic org.springframework.util.CollectionUtils.isEmpty:(Ljava/util/Collection;)Z
            ifne 24
        23: .line 326
            aload 4 /* candidateViews */
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.defaultViews:Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
        24: .line 328
      StackMap locals:
      StackMap stack:
            aload 4 /* candidateViews */
            areturn
        end local 4 // java.util.List candidateViews
        end local 3 // java.util.List requestedMediaTypes
        end local 2 // java.util.Locale locale
        end local 1 // java.lang.String viewName
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   25     0                   this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0   25     1               viewName  Ljava/lang/String;
            0   25     2                 locale  Ljava/util/Locale;
            0   25     3    requestedMediaTypes  Ljava/util/List<Lorg/springframework/http/MediaType;>;
            1   25     4         candidateViews  Ljava/util/List<Lorg/springframework/web/servlet/View;>;
            7   21     5           viewResolver  Lorg/springframework/web/servlet/ViewResolver;
            8   21     7                   view  Lorg/springframework/web/servlet/View;
           12   20     8     requestedMediaType  Lorg/springframework/http/MediaType;
           13   20    10             extensions  Ljava/util/List<Ljava/lang/String;>;
           15   19    11              extension  Ljava/lang/String;
           16   19    13  viewNameWithExtension  Ljava/lang/String;
    Exceptions:
      throws java.lang.Exception
    Signature: (Ljava/lang/String;Ljava/util/Locale;Ljava/util/List<Lorg/springframework/http/MediaType;>;)Ljava/util/List<Lorg/springframework/web/servlet/View;>;
    MethodParameters:
                     Name  Flags
      viewName             
      locale               
      requestedMediaTypes  

  private org.springframework.web.servlet.View getBestView(java.util.List<org.springframework.web.servlet.View>, java.util.List<org.springframework.http.MediaType>, org.springframework.web.context.request.RequestAttributes);
    descriptor: (Ljava/util/List;Ljava/util/List;Lorg/springframework/web/context/request/RequestAttributes;)Lorg/springframework/web/servlet/View;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
        start local 1 // java.util.List candidateViews
        start local 2 // java.util.List requestedMediaTypes
        start local 3 // org.springframework.web.context.request.RequestAttributes attrs
         0: .line 333
            aload 1 /* candidateViews */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 6
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.util.List java.util.List org.springframework.web.context.request.RequestAttributes top java.util.Iterator
      StackMap stack:
         1: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.servlet.View
            astore 4 /* candidateView */
        start local 4 // org.springframework.web.servlet.View candidateView
         2: .line 334
            aload 4 /* candidateView */
            instanceof org.springframework.web.servlet.SmartView
            ifeq 6
         3: .line 335
            aload 4 /* candidateView */
            checkcast org.springframework.web.servlet.SmartView
            astore 6 /* smartView */
        start local 6 // org.springframework.web.servlet.SmartView smartView
         4: .line 336
            aload 6 /* smartView */
            invokeinterface org.springframework.web.servlet.SmartView.isRedirectView:()Z
            ifeq 6
         5: .line 337
            aload 4 /* candidateView */
            areturn
        end local 6 // org.springframework.web.servlet.SmartView smartView
        end local 4 // org.springframework.web.servlet.View candidateView
         6: .line 333
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         7: .line 341
            aload 2 /* requestedMediaTypes */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 19
      StackMap locals:
      StackMap stack:
         8: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.http.MediaType
            astore 4 /* mediaType */
        start local 4 // org.springframework.http.MediaType mediaType
         9: .line 342
            aload 1 /* candidateViews */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 18
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.util.List java.util.List org.springframework.web.context.request.RequestAttributes org.springframework.http.MediaType java.util.Iterator top java.util.Iterator
      StackMap stack:
        10: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.servlet.View
            astore 6 /* candidateView */
        start local 6 // org.springframework.web.servlet.View candidateView
        11: .line 343
            aload 6 /* candidateView */
            invokeinterface org.springframework.web.servlet.View.getContentType:()Ljava/lang/String;
            invokestatic org.springframework.util.StringUtils.hasText:(Ljava/lang/String;)Z
            ifeq 18
        12: .line 344
            aload 6 /* candidateView */
            invokeinterface org.springframework.web.servlet.View.getContentType:()Ljava/lang/String;
            invokestatic org.springframework.http.MediaType.parseMediaType:(Ljava/lang/String;)Lorg/springframework/http/MediaType;
            astore 8 /* candidateContentType */
        start local 8 // org.springframework.http.MediaType candidateContentType
        13: .line 345
            aload 4 /* mediaType */
            aload 8 /* candidateContentType */
            invokevirtual org.springframework.http.MediaType.isCompatibleWith:(Lorg/springframework/http/MediaType;)Z
            ifeq 18
        14: .line 346
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 16
        15: .line 347
            aload 0 /* this */
            getfield org.springframework.web.servlet.view.ContentNegotiatingViewResolver.logger:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Selected '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* mediaType */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "' given "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* requestedMediaTypes */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;)V
        16: .line 349
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.util.List java.util.List org.springframework.web.context.request.RequestAttributes org.springframework.http.MediaType java.util.Iterator org.springframework.web.servlet.View java.util.Iterator org.springframework.http.MediaType
      StackMap stack:
            aload 3 /* attrs */
            getstatic org.springframework.web.servlet.View.SELECTED_CONTENT_TYPE:Ljava/lang/String;
            aload 4 /* mediaType */
            iconst_0
            invokeinterface org.springframework.web.context.request.RequestAttributes.setAttribute:(Ljava/lang/String;Ljava/lang/Object;I)V
        17: .line 350
            aload 6 /* candidateView */
            areturn
        end local 8 // org.springframework.http.MediaType candidateContentType
        end local 6 // org.springframework.web.servlet.View candidateView
        18: .line 342
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.util.List java.util.List org.springframework.web.context.request.RequestAttributes org.springframework.http.MediaType java.util.Iterator top java.util.Iterator
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        end local 4 // org.springframework.http.MediaType mediaType
        19: .line 341
      StackMap locals: org.springframework.web.servlet.view.ContentNegotiatingViewResolver java.util.List java.util.List org.springframework.web.context.request.RequestAttributes top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        20: .line 355
            aconst_null
            areturn
        end local 3 // org.springframework.web.context.request.RequestAttributes attrs
        end local 2 // java.util.List requestedMediaTypes
        end local 1 // java.util.List candidateViews
        end local 0 // org.springframework.web.servlet.view.ContentNegotiatingViewResolver this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   21     0                  this  Lorg/springframework/web/servlet/view/ContentNegotiatingViewResolver;
            0   21     1        candidateViews  Ljava/util/List<Lorg/springframework/web/servlet/View;>;
            0   21     2   requestedMediaTypes  Ljava/util/List<Lorg/springframework/http/MediaType;>;
            0   21     3                 attrs  Lorg/springframework/web/context/request/RequestAttributes;
            2    6     4         candidateView  Lorg/springframework/web/servlet/View;
            4    6     6             smartView  Lorg/springframework/web/servlet/SmartView;
            9   19     4             mediaType  Lorg/springframework/http/MediaType;
           11   18     6         candidateView  Lorg/springframework/web/servlet/View;
           13   18     8  candidateContentType  Lorg/springframework/http/MediaType;
    Signature: (Ljava/util/List<Lorg/springframework/web/servlet/View;>;Ljava/util/List<Lorg/springframework/http/MediaType;>;Lorg/springframework/web/context/request/RequestAttributes;)Lorg/springframework/web/servlet/View;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
                     Name  Flags
      candidateViews       
      requestedMediaTypes  
      attrs                
}
SourceFile: "ContentNegotiatingViewResolver.java"
NestMembers:
  org.springframework.web.servlet.view.ContentNegotiatingViewResolver$1
InnerClasses:
  org.springframework.web.servlet.view.ContentNegotiatingViewResolver$1