Recompile with -Xlint:deprecation for details.

Hi,

I am facing a strange problem on the javac compiler.

org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: -1 in the jsp file: null

Generated servlet error:

[javac] Compiling 1 source file

[javac] /var/tomcat4/work/Apache - Tomcat4/mywebsite.com/_/leftpage_jsp.java:9: error while writing org.apache.jsp.leftpage_jsp: /var/tomcat4/work/Apache - Tomcat4/mywebsite.com/_/leftpage_jsp.class(Permission denied)

[javac] public class leftpage_jsp extends HttpJspBase {

[javac]^

[javac] Note: /var/tomcat4/work/Apache - Tomcat4/mywebsite.com/_/leftpage_jsp.java uses or overrides a deprecated API.

[javac] Note:Recompile with -Xlint:deprecation for details.

[javac] 1 error

Does anyone face such type of problem?

Your small suggestions will help me big.

Thanks

Malai

[916 byte] By [malaiselvana] at [2007-11-27 4:50:43]
# 1

The error is here:

> error while writing org.apache.jsp.leftpage_jsp: /var/tomcat4/work/Apache - Tomcat4/mywebsite.com/_/leftpage_jsp.class (Permission denied)

Your .class file is read-only.

The deprecation message is only a warning. You could attend to that too but it's not holding you up as the above is.

ejpa at 2007-7-12 10:04:09 > top of Java-index,Developer Tools,Java Compiler...