• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Jeanne Boyarsky
Sheriffs:
  • Rob Spoor
  • Devaka Cooray
  • Liutauras Vilda
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Piet Souris

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".
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic