• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to compile jsp's from editplus

 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi I am using Tomcat. I want to copile my jsp's from editplus..For this how to confiure the user Tools in edit plus.. Any body working in edit plus please help me to configure.
Thanks
Mahadevan
 
author & internet detective
Posts: 41878
909
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mahadevan,
What do you mean by "compile" jsp's? IDEs don't compile JSPS into servlets. That's the job of the app server.
 
maha devan
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ya Thanks Jeanne
As u know from editplus, You will able to compile and Run Java Programs by configuring the Editplus Plus ["Tools\User Configuration"].
In this case, editor is not going to compile the Java Program instead, We would have set the path of java Compiler in the ["Tools\User Configuration"]. You can find how to configure in http://www.editplus.com/faq.html

Similar way I think we can configure Tomcat to editplus and compile the JSP's from the Editor.I have done it once , but had forgot the configuration now.
If ur not clear in my question I will still elaborate You in next mail.
 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, No need to compile JSPs just update them in web folder, just make a refresh in browser. the container will compile it.
If you want to precompile the JSPs it varies from container to container, WebSphere has a tool called "jspc" which will precompile jsp before deploying simlly, oracle also providet his facility in Oracle9i. but I dont think Tomcat has this facility if so pl. let me know how its to be done?

Pradheep.
 
Ranch Hand
Posts: 1683
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Or use Ant's jspc task, which requires the jasper.jar and
jasper-runtime.jar files which come with Tomcat 4.
 
reply
    Bookmark Topic Watch Topic
  • New Topic