注销后避免访问历史记录
我想创建一个登录页面,注销后我希望用户显示登录页面而不是上一页,
如何防止用户在注销后返回上一页。 我已经清除了缓存....但通过按后退按钮用户将转到上一页。我想在注销用户按后退按钮后刷新登录页面并显示
<s:form action="Login" >
<s:textfield label="username" name="userName"/>
<s:password label="password" name="password"/>
<s:submit name="login" value="login"></s:submit>
</s:form>
如何管理会话。任何人都可以帮助我 登录.java
package action;
import com.opensymphony.xwork2.ActionSupport;
public class Login extends ActionSupport {
private String userName;
private String password;
public Login() {
}
@Override
public String execute() {
Map session = ActionContext.getContext().getSession();
session.put("logged-in","yes");
return SUCCESS;
}
@Override
public void validate()
{
if(getUserName().length()==0)
{
addFieldError("userName", "User Name is required");
}
else if (!getUserName().equals("prerna"))
{
addFieldError("userName", "Invalid User");
}
if(getPassword().length()==0)
{
addFieldError("password", "password is required");
}
else if (!getPassword().equals("prerna")) {
addFieldError("password", getText("password.required"));
}
}
public String getUserName() {
return userName;
}
/**
* @param userName the userName to set
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return the password
*/
public String getPassword() {
return password;
}
/**
* @param password the password to set
*/
public void setPassword(String password) {
this.password = password;
}
}
Logout.java
public class Logout {
public Logout() {
}
public String execute() throws Exception {
Map session = ActionContext.getContext().getSession();
session.remove("logged-in");
return "success";
}
}
logout.jsp
<s:property value="userName"/>
<s:property value="password"/>
<s:url action="Logout.action" var="urlTag">
</s:url>
<s:a href="%{urlTag}">URL Tag Action (via %)</s:a>
拦截器 登录测试
package interceptor;
import action.Login;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;
import java.util.Map;
public class logintest implements Interceptor {
public logintest() {
}
public void destroy() {
throw new UnsupportedOperationException("Not supported yet.");
}
public void init() {
throw new UnsupportedOperationException("Not supported yet.");
}
public String intercept(ActionInvocation actionInvocation) throws Exception {
Map<String, Object> session = ActionContext.getContext().getSession();
// sb: feel free to change this to some other type of an object which
// represents that the user is logged in. for this example, I am using
// an integer which would probably represent a primary key that I would
// look the user up by with Hibernate or some other mechanism.
String userId = (String) session.get("logged-in");
// sb: if the user is already signed-in, then let the request through.
if (userId != null) {
return actionInvocation.invoke();
}
Object action = actionInvocation.getAction();
// sb: if the action doesn't require sign-in, then let it through.
// sb: if this request does require login and the current action is
// not the login action, then redirect the user
if (!(action instanceof Login)) {
return "loginRedirect";
}
// sb: they either requested the login page or are submitting their
// login now, let it through
return actionInvocation.invoke();
}
}
struts.xml
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
"http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<!-- Configuration for the default package. -->
<package name="default" extends="struts-default">
<interceptors>
<interceptor name="logintest"
class="interceptor.logintest"></interceptor>
<interceptor-stack name="newStack">
<interceptor-ref name="logintest"/>
<interceptor-ref name="defaultStack" />
</interceptor-stack>
</interceptors>
<global-results >
<result name="loginRedirect" type="redirect" >/login.jsp</result>
</global-results>
<action class="action.Login" name="Login">
<interceptor-ref name="newStack"></interceptor-ref>
<result name="input">/login.jsp</result>
<result name="success">/loginsuccess.jsp</result>
</action>
<action class="action.Logout" name="Logout">
<interceptor-ref name="newStack"></interceptor-ref>
<result name="success">/login.jsp</result>
</action>
</package>
i want to create a login page and after logout i want user to show the login page rather than the previous page
how to prevent user from going to back to previous page after logout.
i have cleared the cache....but it by pressing back button user is going to previous page.I want when after logout user presses back button login page is refreshed and displayed
<s:form action="Login" >
<s:textfield label="username" name="userName"/>
<s:password label="password" name="password"/>
<s:submit name="login" value="login"></s:submit>
</s:form>
how to manange session also.can anyone help me
Login .java
package action;
import com.opensymphony.xwork2.ActionSupport;
public class Login extends ActionSupport {
private String userName;
private String password;
public Login() {
}
@Override
public String execute() {
Map session = ActionContext.getContext().getSession();
session.put("logged-in","yes");
return SUCCESS;
}
@Override
public void validate()
{
if(getUserName().length()==0)
{
addFieldError("userName", "User Name is required");
}
else if (!getUserName().equals("prerna"))
{
addFieldError("userName", "Invalid User");
}
if(getPassword().length()==0)
{
addFieldError("password", "password is required");
}
else if (!getPassword().equals("prerna")) {
addFieldError("password", getText("password.required"));
}
}
public String getUserName() {
return userName;
}
/**
* @param userName the userName to set
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return the password
*/
public String getPassword() {
return password;
}
/**
* @param password the password to set
*/
public void setPassword(String password) {
this.password = password;
}
}
Logout.java
public class Logout {
public Logout() {
}
public String execute() throws Exception {
Map session = ActionContext.getContext().getSession();
session.remove("logged-in");
return "success";
}
}
logout.jsp
<s:property value="userName"/>
<s:property value="password"/>
<s:url action="Logout.action" var="urlTag">
</s:url>
<s:a href="%{urlTag}">URL Tag Action (via %)</s:a>
interceptor
logintest
package interceptor;
import action.Login;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;
import java.util.Map;
public class logintest implements Interceptor {
public logintest() {
}
public void destroy() {
throw new UnsupportedOperationException("Not supported yet.");
}
public void init() {
throw new UnsupportedOperationException("Not supported yet.");
}
public String intercept(ActionInvocation actionInvocation) throws Exception {
Map<String, Object> session = ActionContext.getContext().getSession();
// sb: feel free to change this to some other type of an object which
// represents that the user is logged in. for this example, I am using
// an integer which would probably represent a primary key that I would
// look the user up by with Hibernate or some other mechanism.
String userId = (String) session.get("logged-in");
// sb: if the user is already signed-in, then let the request through.
if (userId != null) {
return actionInvocation.invoke();
}
Object action = actionInvocation.getAction();
// sb: if the action doesn't require sign-in, then let it through.
// sb: if this request does require login and the current action is
// not the login action, then redirect the user
if (!(action instanceof Login)) {
return "loginRedirect";
}
// sb: they either requested the login page or are submitting their
// login now, let it through
return actionInvocation.invoke();
}
}
struts.xml
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.1//EN"
"http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<!-- Configuration for the default package. -->
<package name="default" extends="struts-default">
<interceptors>
<interceptor name="logintest"
class="interceptor.logintest"></interceptor>
<interceptor-stack name="newStack">
<interceptor-ref name="logintest"/>
<interceptor-ref name="defaultStack" />
</interceptor-stack>
</interceptors>
<global-results >
<result name="loginRedirect" type="redirect" >/login.jsp</result>
</global-results>
<action class="action.Login" name="Login">
<interceptor-ref name="newStack"></interceptor-ref>
<result name="input">/login.jsp</result>
<result name="success">/loginsuccess.jsp</result>
</action>
<action class="action.Logout" name="Logout">
<interceptor-ref name="newStack"></interceptor-ref>
<result name="success">/login.jsp</result>
</action>
</package>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如利维乌.如上所述,该行为是由客户端的浏览器控制的。您最多可以做的就是在每次请求登录页面时发送无缓存和可能无存储的标头,以便浏览器不会存储这些标头,并且当用户按下回键时,浏览器必须重新请求该页面,这结果出现在登录页面。
您想要设置的特定标头是:
As Liviu. mentioned, that behavior is controlled by the client's browser. The most you can do is to send no-cache and possibly no-store headers with each request for your logged in pages so that the browser does not store those and when the user presses back the browser has to re-request the page, which results in the login page.
The specific headers you would want to set would be:
试试这个
源链接
Try this
Source Link