解決方案:將bean編譯產生的Class檔案拷貝到D:\apache-tomcat-6.0.29\webapps\test\WebContent\WEB-INF下,即可。
原因應該是tomcat找不到這個bean
代碼
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@page import="java.util.Date"%>
<%@page import="java.util.List"%>
<%@page import="beans.TestBean"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<jsp:useBean id="testBean" scope="page" class="beans.TestBean">
</jsp:useBean>
<%=testBean.getName() %>
<%=testBean.getAge() %>
</body>
</html>
一個問題The value for the useBean class attribute beans.TestBean is invalid.
網上搜尋出來的方法均沒有解決這個問題。。
http://lovekang89.blog.163.com/blog/static/16320994120108873944750/
http://digyso.javaeye.com/blog/462548
均說得有理,但是都沒有解決俺的問題。。
跳過先,回頭看看
可能和Tomcat沒有關閉有關係