我项目中的一些jsp页面只有在有用户会话时才可以访问它们。我有一个拦截器来检查会话是否在。如果会话结束,页面将重定向到登录页面。 但登录成功后,我需要重定向到之前工作的页面。 例如:如果我在xxx.jsp页面工作,当会话结束时,我指向登录页面。成功登录后,我需要重定向到xxx.jsp。 请帮助我。
答案 0 :(得分:1)
在Action.class中
try {
HttpServletRequest request = (HttpServletRequest)ActionContext.getContext().get(ServletActionContext.HTTP_REQUEST);
String backurl = request.getHeader("referer");
System.out.println(" Backurl : " + backurl);
Map session = ActionContext.getContext().getSession();
if (session.get("cus") != null) {
return "already_login";
} else {
return "not_yet_login";
}
} catch (Exception e) {
logger.info("Error : " + e);
logger.info("Error Message : " + e.getMessage());
}
在struts.xml中
<action name="call_Action_Class" class="controller.Action.class">
<result name="already_login">success.jsp</result>
<result name="not_yet_login">new_login_page.jsp</result>
</action>
在new_login_page.jsp
中<form action="login_dedirect" method="post" id="logsubmit">
<h2>Email :</h2>
<input type="text" name="email" />
<h2 >Password :</h2>
<input type="password" name="passwd" id="pwd" />
<input type="submit" value="Login" />
</form>
在struts.xml中
<action name="login_dedirect" class="controller.ActionRedirect.class">
<result name="success" type="redirect" >${backurl}</result>
<result name="fail">new_login_page.jsp</result>
</action>
在ActionRedirect.class中
private String backurl;//Getter & Setter Method.
try{
System.out.println(" Backurl :"+backurl);
return "success";
}catch(Exception e){
return "fail";
}
答案 1 :(得分:0)
在struts中,您可以使用业务逻辑操作。并在struts-config.xml中编写这些操作。在action类中,您可以根据需要返回动作映射以重定向到任何jsp页面或servlet。我在下面给你看例子
在struts-config
中 <form-beans>
<form-bean name="Register" type="FormBeans.Register"/>
</form-beans>
以上name属性用于输入表单,type是您注册表单的action类。 下面是您编写业务逻辑的操作类
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
Register r=(Register)form;
DBManager db=new DBManager();
boolean rs=db.checkCustomer(r);
if(rs){
HttpSession session =request.getSession(true);
session.setAttribute("fname", r.getEmail());
return mapping.findForward(SUCCESS);
}
return mapping.findForward("failure");
}
现在回到struts-config,它们是两个标签
<action-mappings>
<action input="/WEB_INF/registeration.jsp" name="Register" path="/register" scope="session" type="actions.registration" validate="false">
<forward name="failure" path="/registeration.jsp"/>
<forward name="success" path="/mainmenu.jsp"/>
</action>
</action-mapping>
您可以使用全局前进和前进操作标记来重定向到您想要的地方
<强> ************更新********************** 强>
上面是strut1,下面是struts 2。 你已经像strut-config一样定义了xml文件。尽管重定向过程是相同的,但它们的差异非常小,例如在xml文件中
<struts>
<constant name="struts.devMode" value="true" />
<package name="helloworld" extends="struts-default">
<action name="hello"
class="HelloWorldAction"
method="execute">
<result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
此处常量标记显示我们处于开发人员模式。这将有助于显示用于调试应用程序的日志。和结果tage用于重定向到你想要的任何jsp页面