views:

230

answers:

1

is Jasper a Java compiler itself?

+3  A: 

Jasper is Tomcat's JSP engine, which implements the JSP specification. It compiles JSP files to Java code. Here is the Wikipedia article.

Older versions of Tomcat used to require JDK in order to compile JSP files. This is no longer necessary, as Jasper can do this job.

kgiannakakis