Java Servlets – Annotations
In this guide we will discuss about annotations of java servlets. So far, you have learnt how Servlet uses the deployment descriptor (web.xml file) for deploying your application into a…
In this guide we will discuss about annotations of java servlets. So far, you have learnt how Servlet uses the deployment descriptor (web.xml file) for deploying your application into a…
In this guide we will discuss about internationalization in java servlets. Before we proceed, let me explain three important terms − Internationalization (i18n) − This means enabling a web site to…
In this guide we will discuss about debugging in java servlets. It is always difficult to testing/debugging a servlets. Servlets tend to involve a large amount of client/server interaction, making…
In this guide we will discuss about packaging in java servlets. The web application structure involving the WEB-INF subdirectory is standard to all Java web applications and specified by the…
In this guide we will discuss about sending email using java servlets. To send an email using your a Servlet is simple enough but to start with you should have JavaMail…
In this guide we will discuss about auto page refresh of java servlets. Consider a webpage which is displaying live game score or stock market status or currency exchange ration.…
Hit Counter for a Web Page In this guide we will discuss about hits counter of java servlets. Many times you would be interested in knowing total number of hits…
In this guide we will discuss about page redirection of java servlets. Page redirection is a technique where the client is sent to a new location other than requested. Page…
In this guide we will discuss about Handling Date of Java Servlets. One of the most important advantages of using Servlet is that you can use most of the methods…
In this guide we will discuss about File uploading in Servlets. A Servlet can be used with an HTML form tag to allow users to upload files to the server.…