Código
<jsp:useBean id="biblioteca" scope="page" class="GestioLlibres"/> <% Llibre[] elsllibres = biblioteca.getLlibres(false); %> <HTML> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <% if (elsllibres!=null) for (int n=0; n<elsllibres.length; n++) { %> <br> <% } %> </body> </html>
Estoy utilizando resign por lo tanto la clase la tengo en WEB-INF/Classes. Pues bien siempre me da el mismo error:
[show] /prueba.jsp:2: cannot find symbol
symbol : class GestioLlibres
location: class _jsp._prueba__jsp
GestioLlibres biblioteca;
^
/prueba.jsp:2: cannot find symbol
symbol : class GestioLlibres
location: class _jsp._prueba__jsp
biblioteca = (GestioLlibres) pageContext.getAttribute("biblioteca");
^
/prueba.jsp:2: cannot find symbol
symbol : class GestioLlibres
location: class _jsp._prueba__jsp
biblioteca = new GestioLlibres();
^
/prueba.jsp:4: cannot find symbol
symbol : class Llibre
location: class _jsp._prueba__jsp
Llibre[] elsllibres = biblioteca.getLlibres(false);
^
4 errors
He buscado bastante por google y nada... lo extraño es que es el código de un curso y (acaso que no haya escrito algo mal) no tiene porque haber fallos en la sintaxis.
S4ludos!