问题
What I want to do is go to a disclaimer page when they first initially hit this method, and then any time after that go to a different page. My current method just takes to me the disclaimer page. Let me know if furthur explanation is needed...thanks!!!
public int show(Action action)
throws Exception
{
HttpServletRequest request = action.getRequest();
action.setJspURI("htemp.jsp");
return FORWARD;
}
Basically I need to add an If to go to a page the first time it hits this method I guess like so:
public int show(Action action)
throws Exception
{
HttpServletRequest request = action.getRequest();
--->> If (FIRST TIME HITTING THE METHOD)
{
go here!!!
}
action.setJspURI("htemp.jsp");
return FORWARD;
}
回答1:
When the person hits the page for the first time, throw a flag on the session layer. Then anytime a person comes to the page you can check to see if it exists or not, and redirect them accordingly. Only problem with that is that they have to agree to it every time they visit unless you implement a login system.
P.S. you should be able to get the Session off of the request object you get in that first line. Then just use setAttribute on that session object.
回答2:
Create a session so you can track whether it's a users first "hitting the method", so you can chose to redirect him to the disclaimer or anywhere else.
来源:https://stackoverflow.com/questions/7890487/java-page-re-direct