BAEL-151 - added dep, minor changes

This commit is contained in:
Slavisa Baeldung 2016-07-11 10:30:40 +02:00
parent cc5f4770dd
commit 73a89d9400
2 changed files with 49 additions and 42 deletions

View File

@ -31,6 +31,13 @@
<version>${javax.el.version}</version> <version>${javax.el.version}</version>
</dependency> </dependency>
<!-- JSTL -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<!-- Spring --> <!-- Spring -->

View File

@ -1,52 +1,52 @@
<?xml version='1.0' encoding='UTF-8' ?> <?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html" xmlns:h="http://java.sun.com/jsf/html"
xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:f="http://java.sun.com/jsf/core"> xmlns:f="http://java.sun.com/jsf/core">
<h:head> <h:head>
<title>Baeldung | The EL Intro</title> <title>Baeldung | The EL Intro</title>
</h:head>
</h:head> <h:body>
<h:form id="elForm">
<h:body>
<h:form id="elForm">
<h:messages/>
<h:messages /> <h:panelGrid columns="2">
<h:panelGrid columns="2"> <h:outputText value="First Name"/>
<h:outputText value="First Name"/> <h:inputText id="firstName" binding="#{firstName}" required="true" value="#{ELBean.firstName}"/>
<h:inputText id="firstName" binding="#{firstName}" required="true" value="#{ELBean.firstName}"/> <h:outputText value="Last Name"/>
<h:outputText value="Last Name"/> <h:inputText id="lastName" required="true" value="#{ELBean.lastName}"/>
<h:inputText id="lastName" required="true" value="#{ELBean.lastName}"/> <h:outputText value="Save by value binding"/>
<h:outputText value="Save by value binding"/> <h:commandButton value="Save" action="#{ELBean.save}">
<h:commandButton value="Save" action="#{ELBean.save}">
</h:commandButton>
</h:commandButton> <h:outputText value="Evaluate backing bean EL"/>
<h:outputText value="Evaluate backing bean EL"/> <h:commandButton value="Save" action="#{ELBean.saveByELEvaluation}">
<h:commandButton value="Save" action="#{ELBean.saveByELEvaluation}"> </h:commandButton>
<h:outputText value="Save by passing value to method"/>
</h:commandButton> <h:commandButton value="Save"
<h:outputText value="Save by passing value to method"/> action="#{ELBean.saveFirstName(firstName.value.toString().concat('(passed)'))}"/>
<h:commandButton value="Save" action="#{ELBean.saveFirstName(firstName.value.toString().concat('(passed)'))}"/> <h:outputText value="JavaScript (click after saving First Name)"/>
<h:outputText value="JavaScript (click after saving First Name)"/> <h:button value="Alert" onclick="alert('Hello #{ELBean.firstName}')"/>
<h:button value="Alert" onclick="alert('Hello #{ELBean.firstName}')"/> </h:panelGrid>
</h:panelGrid>
<br/>
<br/> <h:outputText value="Current Request HTTP Headers:"/>
<h:outputText value="Current Request HTTP Headers:"/> <table border="1">
<table border="1"> <th>Key</th>
<th>Key</th> <th>Value</th>
<th>Value</th> <c:forEach items="#{header}" var="header">
<c:forEach items="#{header}" var="header"> <tr>
<tr> <td>#{header.key}</td>
<td>#{header.key}</td> <td>#{header.value}</td>
<td>#{header.value}</td> </tr>
</tr> </c:forEach>
</c:forEach> </table>
</table>
</h:form>
</h:form> </h:body>
</h:body>
</html> </html>