We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0e35e7 commit 5d8559aCopy full SHA for 5d8559a
1 file changed
jsf/src/main/webapp/el_intro.xhtml
@@ -31,6 +31,19 @@
31
<h:outputText value="JavaScript (click after saving First Name)"/>
32
<h:button value="Alert" onclick="alert('Hello #{ELBean.firstName}')"/>
33
</h:panelGrid>
34
+
35
+ <br/>
36
+ <h:outputText value="Current Request HTTP Headers:"/>
37
+ <table border="1">
38
+ <th>Key</th>
39
+ <th>Value</th>
40
+ <c:forEach items="#{header}" var="header">
41
+ <tr>
42
+ <td>#{header.key}</td>
43
+ <td>#{header.value}</td>
44
+ </tr>
45
+ </c:forEach>
46
+ </table>
47
48
</h:form>
49
</h:body>
0 commit comments