跳转到login.jsp页面的链接
var url=window.location.href; //获取当前页面的链接
window.location.href="${pageContext.request.contextPath}/login.jsp?url="+encodeURIComponent(url);
传递的时候,带地址传递过去
在login.jsp页面
把uri获取到,隐藏在表单中,传递给服务器,登陆返回以后再返回原地址
<form>
<input type="hidden" name="url" value="${param.url}"/>
</form>
然后再后台
String url = request.getParameter("url");
if(url != null && !"".equals(url)){
response.sendRedirect(url);
}else{
response.sendRedirect("index.jsp");
}