Oftentimes when I see an index.jsp on a web application it just forwards to another url like login.jsp such as
<jsp:forward page="login.jsp" />
When using struts2, I want a similar index.jsp but I want it to forward to an action. How do I do this?