JSP 中的 URL 重写

发布于 2024-11-16 19:42:40 字数 125 浏览 2 评论 0原文

Struts 将用户转发到另一个页面后,我得到类似“http://localhost:8080/LiMS/login.do”的信息。我如何让它说“http://localhost:8080/LiMS/view/welcome.jsp”?

After Struts forwards the user to another page I get something like "http://localhost:8080/LiMS/login.do". How do I get it to say "http://localhost:8080/LiMS/view/welcome.jsp"??

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

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

发布评论

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

评论(1

最美不过初阳 2024-11-23 19:42:40

转发发生在服务器端,浏览器不知道。您可以重定向到 JSP 而不是转发,但是像 Struts 这样的 MVC 框架的全部要点是避免直接访问 JSP,并且始终通过前端控制器为视图准备模型。

为什么你想看到welcome.jsp?

Forwarding happens at server-side, and the browser doesn't know about it. You could redirect to the JSP rather than forwarding, but the whole point of an MVC framework like Struts is to avoid accessing JSPs directly, and alway go through a front controller preparing the model for the view.

Why do you want to see welcome.jsp?

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