如何在JSF 2.2中更改Content-Type标头

时间:2015-03-06 23:44:26

标签: jsf-2 xhtml http-headers content-type wildfly-8

如何让JSF发送http标头
Content-Type: application/xhtml+xml;charset=UTF-8代替当前的 Content-Type: text/html;charset=UTF-8

web.xml中添加以下代码段无效。

<mime-mapping>
    <extension>xhtml</extension>
    <mime-type>application/xhtml+xml</mime-type>
</mime-mapping>

我的示例文件webapp/sample.xhtml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
      xmlns:f="http://xmlns.jcp.org/jsf/core">
<f:view>
    <h:outputLabel value="Hello, world"/>
</f:view>
</html>

环境:
JSF 2.2,WildFly 8.2

1 个答案:

答案 0 :(得分:5)

您可以在<f:view>中进行设置,如下所示:

<f:view contentType="application/xhtml+xml">

但是,这是HTML的错误值。 JSF / XHTML生成HTML输出,该输出应该具有text/html内容类型。可以在When to use f:view and f:subview的答案中找到解释,特别是在答案中的“另请参见”链接中。