-
servlet
Get all Request Parameters in Servlet
With this tutorial we shall show you how to get all requests parameters in a Java Servlet. This the most…
Read More » -
servlet
Get all Request Headers in Servlet
This is an example on how to get all the Request Headers in a Servlet. This is to make it…
Read More » -
servlet
Sample Java Servlet
In this example we are going to see how to create a simple Java Servlet. As Oracle states in it’s…
Read More » -
naming
Parsing a JNDI compound name example
In this example we are going to see how to perform Parsing on JNDI compound name. This example parses a…
Read More » -
naming
Locating adding replacing removing and renaming a binding in the Naming service
With this example we are going to show you how to perform basic operations over a binding in a Naming…
Read More » -
mail
Validate email address with Java Mail API
In this example we are going to see how to validate email addresses using Java Mail API. The mail API…
Read More » -
mail
Send file via mail using FileDataSource example
With this example we are going to see how to sent a file using FileDataSource. In this example we are…
Read More » -
mail
Sending emails with JavaMail
Sending a simple text message // Common variables String host = "your_smtp_server"; String from = "from_address"; String to = "to_address";…
Read More » -
mybatis
How create MyBatis mapper
This is an example of how to create a mapper using MyBatis framework. MyBatis is a first class persistence framework…
Read More » -
jms
Simple JMS example on JBoss 5.1
In this example we shall show you how to create a simple hello World example in JMS, using JBoss 5.1.…
Read More »