Struts2 Tutorial Part 5 – Namespaces
In this session we will discuss about Struts2 namespaces.Struts2 namespaces are the Namespaces of the URL accessed. For example if a user types types a...
Struts2 Tutorial Part 4 – Packages
In this tutorial session we will discuss about struts 2 packages.Struts 2 packages are like java packages where actions can be grouped together. See a...
Struts2 Tutorial Part 3 – Actions 2
In this tutorial session we will create a simple struts 2 application to understand the complete flow of an action. If you want to know...
How to make apache server listen on particular port ?
Apache can be made to listen to a particular port/ip address using Listen directive. Syntax : Listen [IP_Address:]Port Examples : Listen 0.0.0.0:80 Listen 80 Listen...
Struts2 Tutorial Part 3 – Actions 1
In this tutorial session we will see the important key aspects of Struts2 Actions. If you want to get clear idea over struts 2 from...
Custom URL in Struts2 for each User
In this tutorial we will see how to assign custom URL for each user logged in Struts2. For example like ‘www.gmail.com/rajesh’ for user rajesh and...
Apache HTTP Server – An Introduction
Apache is the world’s most popular Web server/HTTP server. We will see the overview of apache HTTP server here. How to start / stop /...
Dynamic Drop Down List with Struts2 UI tag without AJAX, jQuery
In this tutorial session we will create simple application to load the drop down list options dynamically from the server side. Also we will use...
Dynamic Drop Down List with Struts 2 and AJAX
In this tutorial session we will create simple application to load the drop down list options dynamically from the server side. Also we will load...
Struts2 Tutorial Part 2 – HelloWorld application
In this tutorial session we will create simple helloStruts application. To create a simple struts2 application follow the steps below. I assume we already have...