Wednesday, 7 August 2013

How do I import a class in a package into a jsp file?

How do I import a class in a package into a jsp file?

It seems like I have correctly imported the package and class, yet for
some reason, my variable user is not found. User is an object of type
String that is created in class AddTo.
<%@ page import= "package1.AddTo" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<p> Shopping Cart</p>
<%= System.out.println(user.name); %>
</body>
</html>

No comments:

Post a Comment