Package org.springframework.http
Class MediaTypeFactory
java.lang.Object
org.springframework.http.MediaTypeFactory
- Since:
- 5.0
- Author:
- Juergen Hoeller, Arjen Poutsma
-
Method Summary
Modifier and TypeMethodDescriptiongetMediaType
(String filename) Determine a media type for the given file name, if possible.getMediaType
(Resource resource) Determine a media type for the given resource, if possible.getMediaTypes
(String filename) Determine the media types for the given file name, if possible.
-
Method Details
-
getMediaType
Determine a media type for the given resource, if possible.- Parameters:
resource
- the resource to introspect- Returns:
- the corresponding media type, or
null
if none found
-
getMediaType
Determine a media type for the given file name, if possible.- Parameters:
filename
- the file name plus extension- Returns:
- the corresponding media type, or
null
if none found
-
getMediaTypes
Determine the media types for the given file name, if possible.- Parameters:
filename
- the file name plus extension- Returns:
- the corresponding media types, or an empty list if none found
-