[jboss-cvs] JBossAS SVN: r69395 - trunk/testsuite/src/resources/web/html/manifest.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jan 28 12:42:50 EST 2008


Author: scott.stark at jboss.org
Date: 2008-01-28 12:42:50 -0500 (Mon, 28 Jan 2008)
New Revision: 69395

Modified:
   trunk/testsuite/src/resources/web/html/manifest/classpath.jsp
Log:
Update jsp:useBean to use the class attribute rather than type

Modified: trunk/testsuite/src/resources/web/html/manifest/classpath.jsp
===================================================================
--- trunk/testsuite/src/resources/web/html/manifest/classpath.jsp	2008-01-28 17:05:59 UTC (rev 69394)
+++ trunk/testsuite/src/resources/web/html/manifest/classpath.jsp	2008-01-28 17:42:50 UTC (rev 69395)
@@ -84,17 +84,13 @@
 %>
 </pre>
 
-<!--
-Not working in jboss5?
-jsp:useBean id="util" scope="session" type="org.jboss.test.web.util.Util" 
--->
+<jsp:useBean id="util" scope="session" class="org.jboss.test.web.util.Util" />
 
 <h2>JSP ClassLoaders</h2>
 <pre>
 <%
    try
    {
-      org.jboss.test.web.util.Util util = new org.jboss.test.web.util.Util();
       ClassLoader loader = Thread.currentThread().getContextClassLoader();
       String loaders = util.displayClassLoaders(loader);
       out.println(loaders);




More information about the jboss-cvs-commits mailing list