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.
在 JSP 中,要求是创建一个历史页面,该页面将显示任何类型的对象的历史记录,例如订单、客户、付款、运输。
如何在不使用对象类型的 IF 的情况下为多个对象创建表?
谢谢你。
在我看来,您应该在模型方面引入一个概括:也许是一个接口,声明您需要用于历史显示的所有 getter。通过实现该接口的所有订单、客户、支付和运输类,您可以依赖可从 JSP 访问的 getter。