Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How jasper the jsp engine, compile JSP to servlet?

Tags:

tomcat

is Jasper a Java compiler itself?

like image 459
Brodie Avatar asked Nov 11 '09 09:11

Brodie


1 Answers

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.

like image 104
kgiannakakis Avatar answered Oct 06 '22 01:10

kgiannakakis