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...
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....
Send HTML Form data to struts2 action by Normal 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 JSON object to Struts 2 Action by JQuery AJAX
To send data from client side to server side, one of the best way is send as JSON object. Please follow the steps below to...
Read JSON object from Struts 2 Action by JQuery AJAX
To read java objects from action class as JSON object please follow the steps as below. To understand completely please read this article first. Modify the struts.xml...