yinhaox opened a new issue #2729: URL: https://github.com/apache/servicecomb-java-chassis/issues/2729
在 common/common-rest/src/main/java/org/apache/servicecomb/common/rest/filter/inner/ServerRestArgsFilter.java 中 处理响应体Content-Type属性的方法是通过拼接produceProcessor的getName()方法返回的值和"; charset=utf-8"字符串实现的,但如果我需要设置其他charset,甚至添加boundary属性,应该怎么做? ``` java responseEx.setContentType(produceProcessor.getName() + "; charset=utf-8"); ``` 比如我某个契约需要: Content-Type: multipart/form-data; boundary=---------------------- -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
