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...
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...
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...
Send HTML Form data to struts2 action by Model Driven method
HTML form data can be transferred to Struts2 Action in three ways. 1. Normal Method with simple getters() and setters() 2. Object Backed Method 3....
Send HTML Form data to struts2 action by Object Backed Method
HTML form data can be transferred to Struts2 Action in three ways. 1. Normal Method with simple getters() and setters() 2. Object Backed Method 3....