[
https://issues.apache.org/jira/browse/WW-3536?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Johannes Geppert resolved WW-3536.
----------------------------------
Resolution: Fixed
Fix Version/s: 2.3
The JSON Content Handler respects now your Default Encoding.
private static final String DEFAULT_CONTENT_TYPE = "application/json";
private String defaultEncoding = "ISO-8859-1";
public String getContentType() {
return DEFAULT_CONTENT_TYPE+";charset=" + this.defaultEncoding;
}
@Inject(StrutsConstants.STRUTS_I18N_ENCODING)
public void setDefaultEncoding(String val) {
this.defaultEncoding = val;
}
> Specify UTF-8 content type in JsonLibHandler
> --------------------------------------------
>
> Key: WW-3536
> URL: https://issues.apache.org/jira/browse/WW-3536
> Project: Struts 2
> Issue Type: Bug
> Components: Plugin - REST
> Affects Versions: 2.1.8.1
> Environment: Java 5; Firefox 3.6
> Reporter: Simon Legault
> Assignee: Johannes Geppert
> Priority: Trivial
> Fix For: 2.3
>
>
> Response returned by the REST plugin does not specify the character encoding.
> Firefox 3.6 reads the incoming JSON incorrectly for non-ANSI characters.
> Specifying the character encoding explicitly (;charset=utf-8) fixes the
> problem.
> public class JsonLibHandler implements ContentTypeHandler {
> ...
> public String getContentType() {
> return "text/javascript;charset=utf-8";
> }
> ...
> }
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira