我用JB建立了一个工程,工程的目录是F:\test
源文件都在F:\test下
类文件都在F:\test\classes下             其中有个student.class
JSP文件在F:\test\defaultroot下
注:F:\test\defaultroot\WEB-INF\classes下也有类文件           其中有个student.class
以上的路径都是JB自动生成的!
--------------------------------
我现在想在JSP文件里student obj = new student();
系统提示Class org.apache.jsp.student not found请问怎么才能让JSP中student obj = new student();呀?需要IMPORT什么吗?需要设路径吗?JSP内容:

<%
student obj = new student();
obj.setAge(22);
out.print(obj.getAge());
%>解决给分~大家帮我!