tags:

views:

111

answers:

1

I am a .NET developer dabbling into the JSP world. I loaded NetBeans 6.5.1 and get an error in this page:

<%@page import="java.io" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
                      "w3.org/TR/html4/loose.dtd">;
<html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>JSP Page</title>
 </head>
 <body>
 <h1>Hello World!</h1>
 </body>
</html>

the error is:

"Package Beans does not Exist"

I should add that I created a new Java Web Application and then copy-and-pasted some code that called for the above import. then I get the error.

Help with this error would be great along with any tutorials or books.

A: 

Something is wrong with the classpath. Your configuration of the server, plus setup in the WAR file, should be checked against a working one.

Charlie Martin