I strongly need to override JSF 2.0 Content-Type header. Default it is
Content-Type:application/xhtml+xml; charset=UTF-8
But I need
Content-Type:text/html; charset=UTF-8
Thanks.
|
|
|
How about
|
|||
|
|
Use the right doctype.
Nothing more. Also don't put
It's the HTML5 doctype. It's fully compatible with XHTML 1.x markup and adds more advantages. |
||||
|
|
|
The following approach works in all the browsers: Write a PhaseListener:
and register it in faces-context.xml:
|
|||||||||||
|