有人能告诉我如何在jboss as 7中定制http代码和reasonphrase吗?
基本上,我有一个rest webservice,它返回一个非标准状态代码“499”,其原因是短语“app error”
standalone.xml中,我在org.apache.coyote.Constants.USE_CUSTOM_STATUS_MSG_IN_HEADER下将true设置为systemproperties,但仍覆盖http错误消息。

最佳答案

jboss文档中似乎有一个错误,正确的属性名是:

org.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER

所以在单机版中应该有这样的东西:
<system-properties>
    <property name="org.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER" value="true"/>
</system-properties>

10-05 23:54