• 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

Where is the translated .java file by Tomcat?

 
Greenhorn
Posts: 10
Eclipse IDE Windows XP Debian
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I develop JSP with Eclipse Java EE. I know there should be a .java file under Tomcat/work/ which was translated by Tomcat. However, after I run my JSP, I didn't find any new file under that directory. I wonder where could I find the translated .java file? May be it should be something about Eclipse Java EE.
 
Ranch Hand
Posts: 820
IntelliJ IDE VI Editor Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
by default, somewhere like

....workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/work/Catalina/localhost/[projectName]/org/apache/jsp

That's where mine are anyway.
 
Litas Lee
Greenhorn
Posts: 10
Eclipse IDE Windows XP Debian
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tim McGuire wrote:by default, somewhere like

....workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/work/Catalina/localhost/[projectName]/org/apache/jsp

That's where mine are anyway.


Thanks! I got it.
And what about the WEB-INF/web.xml?
 
Saloon Keeper
Posts: 27763
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please be cautious about how you use this information. The Eclipse WTP plug-in does some serious messing around with the way that Tomcat does things and they won't match up with how Tomcat runs on a production server.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic