vote up 0 vote down star

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 ?

flag

Can you provide the specific error message? – Shimi Bandiel Aug 20 at 7:07

2 Answers

vote up 2 vote down check

Shouldn't that be

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

?

link|flag
A nice catch. +1 – Vinegar Aug 20 at 7:46
vote up 0 vote down

Restart your context. May be other part of jsp page has errors.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.