0
can anyone tell me how to write servlet code in eclipse
2 Antworten
0
You need a good understanding of java first. If you do, you will need Tomcat and Java EE for the server. To take advantage of the servlet, learn what the HttpServlet class is.
https://docs.oracle.com/javaee/7/api/javax/servlet/http/HttpServlet.html
You will also need an understanding of how servlets work as well as post and get requests.
Here is a great tutorial on how to actually do the coding:
https://www.youtube.com/watch?v=b42CJ0r-1to
0
thank you Mythos