I am running the Java Pet Store example and this is the top part of my "index.jsp" file :
<%-- Copyright 2006 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at: http://developer.sun.com/berkeley_license.html
$Id: index.jsp,v 1.20 2007-03-16 20:18:59 basler Exp $ --%>
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@page import="java.util.*, com.sun.javaee.blueprints.petstore.model.CatalogFacade, com.sun.javaee.blueprints.petstore.model.Tag"%>
<%
try {
CatalogFacade cf = (CatalogFacade)config.getServletContext().getAttribute("CatalogFacade");
List<Tag> tags=cf.getTagsInChunk(0, 12);
// since top 20 come from database or desending refCount order, need to reorder by tag name
Collections.sort(tags, new Comparator() {
public int compare(Object one, Object two) {
int cc=((Tag)two).getTag().compareTo(((Tag)one).getTag());
return (cc < 0 ? 1 : cc > 0 ? -1 : 0);
}
});
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<title>Java Pet Store Reference Application</title>
<link type="text/css" rel="stylesheet" href="./tag.css"/>
</head>
<body>
....