|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.http.converter.AbstractHttpMessageConverter<String> org.springframework.http.converter.StringHttpMessageConverter
public class StringHttpMessageConverter
Implementation of HttpMessageConverter
that can read and write strings.
By default, this converter supports all media types (*/*
), and writes with a Content-Type
of text/plain
. This can be overridden by setting the supportedMediaTypes
property.
Field Summary | |
---|---|
static Charset |
DEFAULT_CHARSET
|
Fields inherited from class org.springframework.http.converter.AbstractHttpMessageConverter |
---|
logger |
Constructor Summary | |
---|---|
StringHttpMessageConverter()
|
Method Summary | |
---|---|
protected List<Charset> |
getAcceptedCharsets()
Return the list of supported Charset . |
protected Long |
getContentLength(String s,
MediaType contentType)
Returns the content length for the given type. |
protected String |
readInternal(Class clazz,
HttpInputMessage inputMessage)
Abstract template method that reads the actualy object. |
void |
setWriteAcceptCharset(boolean writeAcceptCharset)
Indicates whether the Accept-Charset should be written to any outgoing request. |
boolean |
supports(Class<?> clazz)
Indicates whether the given class is supported by this converter. |
protected void |
writeInternal(String s,
HttpOutputMessage outputMessage)
Abstract template method that writes the actual body. |
Methods inherited from class org.springframework.http.converter.AbstractHttpMessageConverter |
---|
canRead, canRead, canWrite, canWrite, getDefaultContentType, getSupportedMediaTypes, read, setSupportedMediaTypes, write |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final Charset DEFAULT_CHARSET
Constructor Detail |
---|
public StringHttpMessageConverter()
Method Detail |
---|
public void setWriteAcceptCharset(boolean writeAcceptCharset)
Accept-Charset
should be written to any outgoing request.
Default is true
.
public boolean supports(Class<?> clazz)
AbstractHttpMessageConverter
supports
in class AbstractHttpMessageConverter<String>
clazz
- the class to test for support
true
if supported; false
otherwiseprotected String readInternal(Class clazz, HttpInputMessage inputMessage) throws IOException
AbstractHttpMessageConverter
AbstractHttpMessageConverter.read(java.lang.Class extends T>, org.springframework.http.HttpInputMessage)
.
readInternal
in class AbstractHttpMessageConverter<String>
clazz
- the type of object to returninputMessage
- the HTTP input message to read from
IOException
- in case of I/O errorsprotected Long getContentLength(String s, MediaType contentType)
AbstractHttpMessageConverter
By default, this returns null
, meaning that the content length is unknown.
Can be overridden in subclasses.
getContentLength
in class AbstractHttpMessageConverter<String>
s
- the type to return the content length for
null
if not knownprotected void writeInternal(String s, HttpOutputMessage outputMessage) throws IOException
AbstractHttpMessageConverter
AbstractHttpMessageConverter.write(T, org.springframework.http.MediaType, org.springframework.http.HttpOutputMessage)
.
writeInternal
in class AbstractHttpMessageConverter<String>
s
- the object to write to the output messageoutputMessage
- the message to write to
IOException
- in case of I/O errorsprotected List<Charset> getAcceptedCharsets()
Charset
.
By default, returns Charset.availableCharsets()
. Can be overridden in subclasses.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |