Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有继承 menu.jsp 页面的 page1.jsp。在 page1.jsp 的 servlet 上,doGet 调用数据库中的项目并将其显示在 menu.jsp 中。现在,当我转到另一个链接时,它会给我一个错误,因为新链接的 servlet 的 doGet 不提供对在我的 menu.jsp 中显示的项目的调用。它是提供所有页面所需的 doGet 的唯一选择吗?
为应该支持 menu.jsp 的所有 servlet 创建一个抽象超类。在那里,您可以定义一个最终的 doGet 方法,您首先在其中执行菜单魔术,然后您可以委托给在扩展类中实现的抽象方法。