Package org.springframework.web.accept

Examples of org.springframework.web.accept.ServletPathExtensionContentNegotiationStrategy


   
    List<ContentNegotiationStrategy> strategies = new ArrayList<ContentNegotiationStrategy>();
    if (this.favorPathExtension) {
      PathExtensionContentNegotiationStrategy strategy;
      if (this.servletContext != null) {
        strategy = new ServletPathExtensionContentNegotiationStrategy(this.servletContext, this.mediaTypes);
      } else {
        strategy = new PathExtensionContentNegotiationStrategy(this.mediaTypes);
      }
      strategies.add(strategy);
    }
View Full Code Here

TOP

Related Classes of org.springframework.web.accept.ServletPathExtensionContentNegotiationStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.