jsp:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head><body>
<jsp:useBean id="Test" class="test" scope="page"></jsp:useBean>
<%Test.setValue("123");
out.print(Test.getValue());
%>
</body>
</html>class:
public class test {
  String s="";
  public void setValue(String s){
    this.s=s;
  }
  public String getValue() {
   return s;
  }
}我把class文件放在ROOT\WEB-INF\classes下,为什么运行jsp文件时报出Unable to load class for JSP
的错误呢,郁闷啊

解决方案 »

  1.   

    再看看WEB容器中配置的类的输出路径是不是那个路径
      

  2.   

    有时又报
    An error occurred at line: 10 in the jsp file: /test.jsp
    Generated servlet error:
    test cannot be resolved to a typeAn error occurred at line: 10 in the jsp file: /test.jsp
    Generated servlet error:
    test cannot be resolved to a typeAn error occurred at line: 10 in the jsp file: /test.jsp
    Generated servlet error:
    test cannot be resolved to a type