I want to use a java class in JSP. I placed the java class file in WEB-INF/classes/hello.class.
In index.jsp
i'm creating the object for hello
class.
I'm getting this error "hello cannot be resolved to a type"
. Here is my jsp code,
<%@ page import="hello" %>
<%
hello h = new hello();
out.print(h.getValue());
%>