MingLong Wu wrote:
>
> Hi,
>
> I got the following error when I type
> http://localhost:8080/JSPbook/Chap06/BookTopics.jsp
>
> Error: 500
>
> Location: /JSPbook/Chap06\BookTopics.jsp
>
> Internal Servlet Error:
>
> org.apache.jasper.JasperException: Unable to compile class for
>
>JSPC:\tomcat\work\localhost_8080%2FJSPbook\_0002fChap_00030_00036_0002fBookTopics_0002ejspBookTopics_jsp_1.java:66:
> Class com.JSPbook.Chap06.BookDOMbean not found.
> com.JSPbook.Chap06.BookDOMbean bookBean = null;
.....
> I do success compile and get BookDOMbean.class. Can anyone tell me what it
> means?
you have to put BookDOMbean.class where the compiler can find it,
according to the servlet specification, this is under the WEB-INV
classes directory structure.
WEB-INF\classes\com\JSPbook\Chap06\