You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by Apache Wiki <wi...@apache.org> on 2007/02/21 01:29:43 UTC

[Struts Wiki] Trivial Update of "StrutsQuickStartJSP" by MichaelJouravlev

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification.

The following page has been changed by MichaelJouravlev:
http://wiki.apache.org/struts/StrutsQuickStartJSP

------------------------------------------------------------------------------
  == Employee list with pure JSP (Model 1) ==
  
  Before the data list is displayed, it should be retrieved from a database and saved into appropriate J2EE scope like request, session or application. Then the list is iterated and its content is shown line by line. Notice JSTL 2.0 usage.
- 
- inline:employee_list.gif
  
  {{{<%@ page import="java.util.ArrayList, model.EmployeeManager"%>
  <%@ page contentType="text/html;charset=UTF-8" language="java" %>