<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>
<%@ page import="test.SimpleBean" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<jsp:useBean id="testbean" class="test.SimpleBean" scope="page" />
  <jsp:setProperty name="testbean" property="message" value="aaaaaaaa" />
  <jsp:getProperty name="testbean" property="message" />
</body>
</html>
这个是验证代码 eclipse里写的
问题:<jsp:useBean id="testbean" class="test.SimpleBean" scope="page" />这行在eclipse里报错
错误说明:test.SimpleBean cannot be resolved to a type
请问是什么问题?还需要提供什么东西?