krishnakumar
krishnakumar

Reputation: 173

Unable to compile class for JSP error?

i want to use the Java program in JSP.

i have created java program Helloworld under package sam.jni

then in JSP program i called the Java class file using

<@ page import="sam.jni.Helloworld">

after deploying the JSP file i am getting unable to compile class for JSP error

where am i doing wrong ?

Upvotes: 0

Views: 1460

Answers (1)

Kevin Jones
Kevin Jones

Reputation: 2367

Shouldn't that be

<%@ page import="sam.jni.Helloworld" %>

?

Upvotes: 2

Related Questions