What servlet method does the servlet container call when a request is made to the servlet?
service(), which calls doGet(), doPost(), or another "do" method
If the following Java statement appears in a servlet,
who will own the file when it is created?
FileWriter outfile = new FileWriter ("/home/offutt/Data/info-file");
Tomcat – or at least, the user who last restarted Tomcat
Which of the following issues should we check for during deployment testing?
Answer with either a
T=true, F=false):
T
We should test it just as real users would access it.
F
Correctness of the algorithms.
T
File names and path names.
T
Upper case dependencises.
F
Whether the correct variable names are used or not.