what is EJB and Java servlet
Answers were Sorted based on User's Feedback
Answer / madan
EJB is a distributed technology used in many real time applications such atm transaction,online booking...
now the latest verions ejb3 has annotations which feel easy and good to learn..
Enterprise java beans heart of banking applications ..
and
Servlet-Servlet is a server side components which is used to develop server side applications.. it is based on request response methodlogy..it has own life cycle init(),service(),doget() or dopost() and destroy()..
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikiran
EJB is enterprise java bean, where component based
development takes place and uses RMI for remote method calls
Servlet is a server side program wich will process the
client request inside the server and will return resource
based on the request as a response
| Is This Answer Correct ? | 1 Yes | 0 No |
What is servlet in web technology?
Difference Between Web Server and Application server ??
How to pass a requrest object of one servlet as a request object to another servlet?
What is servlet used for?
When a client request is sent to the servlet container, how does the container choose which servlet to invoke?
What is a cookie What is the difference between session and cookie
How can a servlet be used to generate plain text instead of html?
Explain the role of dispatcherservlet and contextloaderlistener.
what is multiple server?
What is called servlet container?
What is the process to implement doget and dopost methods?
How ThreadSafe page attribute will be working in Servlet as well as in JSP?Automatically ThresdSafe is true in JSP so service method will be destroy in each and every request or not?so how thresd will handle srevice method?