Is it possible to access struts2 variable in jsp scriptlet?
If I have struts2 variable like
You can even use the request object to get the action variable. For example, if you have a variable String userName in the action, you can use
String userName
<% String userName = (String) request.getAttribute("userName"); %>