|
|
|
JSP
|
Does JSP support multi-threading?
JSP documents are ultimately compiled to servlets, which are multi-threaded by default and are assumed to be thread-safe. If the code in your JSP is n |
|
|
JSP
|
Which is faster, servlets or JSP?
JSP documents are compiled into servlets before the servlet container uses them to respond to a request. Once JSP has been compiled, they should be eq |
|
|
JSP
|
Which is best, servlets or JSP?
Servlets tend to be better at providing validation for HTTP requests, interpreting the request parameters and directing the outcome of the interaction |
|
|