获取 JSP 文件中的 URL 以通过控制器 servlet 运行

发布于 2024-12-19 06:10:21 字数 355 浏览 1 评论 0原文

所以我有一个事件(对象)列表。我想做到这一点,以便当您单击事件标题时,将包含该事件的附加信息。但如果我这样写,它不会与提供事件列表的控制器 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 技术交流群。

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

发布评论

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

评论(1

差↓一点笑了 2024-12-26 06:10:21

只需将 JSP 的 URL 替换为 servlet 的 URL 即可。假设 servlet 在 web.xml 中映射

<url-pattern>/EventsOverview</url-pattern>

或具有新的 Servlet 3.0 @WebServlet("/EventsOverview") 注释,那么您需要按如下方式替换链接:

<a href="EventsOverview?event=<%=e.getID()%>"> <%= e.getTitle() %> </a>

或者,如果您坚持现代(嗯,已经快 10 岁了;确保您正在阅读正确且最新的书籍/教程)JSP 2.0 编写视图的方式:

<a href="EventsOverview?event=${e.id}"><c:out value="${e.title}" /></a>

无论哪种方式, 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 on

<url-pattern>/EventsOverview</url-pattern>

or has the new Servlet 3.0 @WebServlet("/EventsOverview") annotation, then you need to replace the link as follows:

<a href="EventsOverview?event=<%=e.getID()%>"> <%= e.getTitle() %> </a>

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:

<a href="EventsOverview?event=${e.id}"><c:out value="${e.title}" /></a>

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:

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