Java页面重定向

发布于 2024-12-11 19:36:26 字数 598 浏览 0 评论 0原文

我想要做的是,当他们第一次点击此方法时,转到免责声明页面,然后随时转到不同的页面。我当前的方法只显示免责声明页面。如果需要进一步解释,请告诉我...谢谢!

public int show(Action action)
throws Exception
{

    HttpServletRequest request = action.getRequest();

action.setJspURI("htemp.jsp");
return FORWARD;
}

基本上我需要添加一个 If 来在第一次点击这个方法时进入页面,我想是这样的:

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;
}

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;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

扬花落满肩 2024-12-18 19:36:26

当用户第一次访问该页面时,在会话层上抛出一个标志。然后,每当有人访问该页面时,您都可以检查该页面是否存在,并相应地重定向他们。唯一的问题是,除非您实施登录系统,否则他们每次访问都必须同意。

PS您应该能够从第一行中获得的请求对象中获取会话。然后只需在该会话对象上使用 setAttribute 即可。

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.

作死小能手 2024-12-18 19:36:26

创建一个会话,以便您可以跟踪是否是用户第一次“点击方法”,这样您就可以选择将他重定向到免责声明或其他任何地方。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文