Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to precompile jsp into eclipse?

The title is pretty straightforward.

I would like to know if there is any possibility of seeing the compiled jsp (the servlet generated) directly into eclipse. Without deploying onto any server.

like image 688
David Avatar asked Nov 05 '22 11:11

David


1 Answers

If you work with JSPs, I suggest to buy MyEclipse since it can compile JSPs and show you problems (compile errors, etc) in the editor. Eclipse 3.6 also works but JSP support is much better in MyEclipse.

If you just want to compile the JSPs, then have a look at Maven. With the help of the JSPC Plugin, you can compile the JSPs into Java code and then add this source folder to your project.

For completeness: There is an ancient Tomcat plugin along with the UQBar Extension. That will configure Tomcat to compile the JSPs into a work folder in your project as you use them (i.e. this is not precompilation but the usual on-the-fly-JSP-compilation).

like image 96
Aaron Digulla Avatar answered Nov 12 '22 16:11

Aaron Digulla