Hi,
You just check session at your login page that session is registered your user value.
If yes ? --> then forward to your location
jsp
if not ? --> then not to do any thing..
just like this
<s:if test="#session.user == user">
<jsp:forward page="/pages/homePage.jsp" />
</s:if>
This will automatically redirect to you homePage.jsp if you are login and your session is registered.