JSP 中的 URL 重写
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转发发生在服务器端,浏览器不知道。您可以重定向到 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?