• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

silly Doubt regarding transation and compilation

 
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all,
i have seen different things in different text and tutorial.
for k&b translation means only servlet.java file is created..
and compilation is not part of translation phase...

in some mock exam translation and compilation are both part of translation phase and others phases are in request-processing phase..

Am i wrong somewhere in interpretation?

In the scwcd 1.4 exam..if the word comes as Translation phase then what should i consider only translation of jsp file into servlet.java file ???

please help me
thanks in advance
 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Translation means jsp file is translated to java file....here the jsp syntax checks are done.......compilation is next stage ...here the translated java file is compiled for java related errors......
hope this helps..
pls correct me ranchers if i am wrong ...
 
Author
Posts: 836
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To add another complication: where does validation occur? Quite often this is rolled into the same process and simply bundled as part of "translation", whereas in fact when we talk about "translation" we often mean "validation + translation into servlet source".
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic