获取 JSP 文件中的 URL 以通过控制器 servlet 运行
所以我有一个事件(对象)列表。我想做到这一点,以便当您单击事件标题时,将包含该事件的附加信息。但如果我这样写,它不会与提供事件列表的控制器 servlet 交互,它只会使用参数 event=ID 直接转到 EventsOverview.jsp 页面。事件列表将为空。
List<Event> eventList = (List<Event>) request.getAttribute("eventList");
...
<a href="EventsOverview.jsp?event=<%=e.getID()%>"> <%= e.getTitle() %> </a>
So I have a list of events (objects). I want to make it so that when you click an event title, additional information will enfold for that event. But if I write it like this, it won't interact with the controller servlet which gives the list of events, it will just go to the EventsOverview.jsp page directly with parameter event=ID. The list of events will be null.
List<Event> eventList = (List<Event>) request.getAttribute("eventList");
...
<a href="EventsOverview.jsp?event=<%=e.getID()%>"> <%= e.getTitle() %> </a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 JSP 的 URL 替换为 servlet 的 URL 即可。假设 servlet 在
web.xml
中映射或具有新的 Servlet 3.0
@WebServlet("/EventsOverview")
注释,那么您需要按如下方式替换链接:或者,如果您坚持现代(嗯,已经快 10 岁了;确保您正在阅读正确且最新的书籍/教程)JSP 2.0 编写视图的方式:
无论哪种方式, servlet 的
doGet()
将被调用,您可以在其中执行预处理工作并将请求分派到所需的 JSP 以以 HTML 形式呈现结果。另请参阅:
Just replace the URL to the JSP by the URL to the servlet. Assuming that the servlet is in
web.xml
mapped onor has the new Servlet 3.0
@WebServlet("/EventsOverview")
annotation, then you need to replace the link as follows:Or, if you adhere the modern (well, almost 10 years old already; make sure that you're reading the proper and up to date books/tutorials) JSP 2.0 way of writing the views:
Either way, the servlet's
doGet()
will be called, wherein you can just do the preprocessing job and dispatch the request to the desired JSP to present the results in HTML.See also: