<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> Example JSP customers table.

ID Name Email Age Category Portfolio Date Joined Active
${customer.id} ${customer.name} ${customer.email} ${customer.age} ${customer.investments}

 

The CustomerTable page is automatically mapped to the request:
GET customer-table.htm 
When pages are configured to use automapping the ClickServlet will automatically associated the file path customer-table.jsp with the page class CustomerTable.