Oddělení prezentační vrstvy (3)

  • Stránka využívající JSF

<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-faces" 
  prefix="s" %> 
<f:use_faces>
  <s:form action="/listFlights">
  <h:input_text id="fromCity"       
             valueRef="FlightSearchForm.fromCity"/>
  <h:input_text id="toCity"  
             valueRef="FlightSearchForm.toCity"/>
<h:command_button id="submit" action="success" label="Submit" commandName="submit" />
   <h:command_button id="reset" action="reset" label="Reset" 
                     commandName="reset" />
   <s:errors/>
   </s:form>
</f:use_faces>