Package org.springframework.web.accept
Class ServletPathExtensionContentNegotiationStrategy
- java.lang.Object
- org.springframework.web.accept.MappingMediaTypeFileExtensionResolver
- org.springframework.web.accept.AbstractMappingContentNegotiationStrategy
- org.springframework.web.accept.PathExtensionContentNegotiationStrategy
- org.springframework.web.accept.ServletPathExtensionContentNegotiationStrategy
- All Implemented Interfaces:
ContentNegotiationStrategy,MediaTypeFileExtensionResolver
@Deprecated public class ServletPathExtensionContentNegotiationStrategy extends PathExtensionContentNegotiationStrategy
Deprecated.as of 5.2.4. See class-level note inContentNegotiationManagerFactoryBeanon the deprecation of path extension config options.ExtendsPathExtensionContentNegotiationStrategythat also usesServletContext.getMimeType(String)to resolve file extensions.- Since:
- 3.2
- Author:
- Rossen Stoyanchev
Field Summary
Fields inherited from class org.springframework.web.accept.AbstractMappingContentNegotiationStrategy
logger
Fields inherited from interface org.springframework.web.accept.ContentNegotiationStrategy
MEDIA_TYPE_ALL_LIST
Constructor Summary
Constructors Constructor Description ServletPathExtensionContentNegotiationStrategy(ServletContext context)Deprecated.Create an instance without any mappings to start with.ServletPathExtensionContentNegotiationStrategy(ServletContext servletContext, Map<String,MediaType> mediaTypes)Deprecated.Create an instance with the given extension-to-MediaType lookup.
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MediaTypegetMediaTypeForResource(Resource resource)Deprecated.Extends the base classPathExtensionContentNegotiationStrategy.getMediaTypeForResource(org.springframework.core.io.Resource)with the ability to also look up through the ServletContext.protected MediaTypehandleNoMatch(NativeWebRequest webRequest, String extension)Deprecated.Resolve file extension viaServletContext.getMimeType(String)and also delegate to base class for a potentialMediaTypeFactorylookup.Methods inherited from class org.springframework.web.accept.PathExtensionContentNegotiationStrategy
getMediaTypeKey, setUrlPathHelper, setUseJaf
Methods inherited from class org.springframework.web.accept.AbstractMappingContentNegotiationStrategy
handleMatch, isIgnoreUnknownExtensions, isUseRegisteredExtensionsOnly, resolveMediaTypeKey, resolveMediaTypes, setIgnoreUnknownExtensions, setUseRegisteredExtensionsOnly
Methods inherited from class org.springframework.web.accept.MappingMediaTypeFileExtensionResolver
addMapping, getAllFileExtensions, getAllMediaTypes, getMediaTypes, lookupMediaType, resolveFileExtensions
Constructor Detail
ServletPathExtensionContentNegotiationStrategy
public ServletPathExtensionContentNegotiationStrategy(ServletContext context)
Deprecated.Create an instance without any mappings to start with. Mappings may be added later when extensions are resolved throughServletContext.getMimeType(String)or viaMediaTypeFactory.
ServletPathExtensionContentNegotiationStrategy
public ServletPathExtensionContentNegotiationStrategy(ServletContext servletContext, @Nullable Map<String,MediaType> mediaTypes)
Deprecated.Create an instance with the given extension-to-MediaType lookup.
Method Detail
handleNoMatch
@Nullable protected MediaType handleNoMatch(NativeWebRequest webRequest, String extension) throws HttpMediaTypeNotAcceptableException
Deprecated.Resolve file extension viaServletContext.getMimeType(String)and also delegate to base class for a potentialMediaTypeFactorylookup.- Overrides:
handleNoMatchin classAbstractMappingContentNegotiationStrategy- Throws:
HttpMediaTypeNotAcceptableException
getMediaTypeForResource
public MediaType getMediaTypeForResource(Resource resource)
Deprecated.Extends the base classPathExtensionContentNegotiationStrategy.getMediaTypeForResource(org.springframework.core.io.Resource)with the ability to also look up through the ServletContext.- Overrides:
getMediaTypeForResourcein classPathExtensionContentNegotiationStrategy- Parameters:
resource- the resource to look up- Returns:
- the MediaType for the extension, or
nullif none found - Since:
- 4.3