Error compiling JSP
Hi,
I am trying out IntelliJ and have created a very simple jsp:
<%
for(int i = 0; i < 10; i++)
{
%>
Loop count = <%=i%>
<%
}
%>
Please sign in to leave a comment.
Hello Aryeh,
Are you using JDK 1.3.x as target JDK?
--
Best regards,
Eugene Zhuravlev
JetBrains, Inc, http://www.intellij.com
"Develop with pleasure!"
"Aryeh Sivan" <jiveadmin@intellij.net> wrote in message
news:8244018.1034080458792.JavaMail.jrun@is.intellij.net...
>
>
>
>
sun.tools.javac.Main has been deprecated.
>
C:\IntelliJ\bin\..\system\jasper_tempe75f5164\First$jsp.java:85:
Incompatible type for method. Explicit cast needed to convert
java.lang.Throwable to java.lang.Exception.
pageContext.handlePageException(t);
>
^
>
>
>
Hi Eugene,
My target JDK as defined in the project properties is JDK 1.4.1. I also verified that %JAVA_HOME% points to 1.4.1.
Do I have to use JDK 1.3.X?
Aryeh