你定义的门面接口其实在用外观模式——但99%的人把它用成了垃圾堆
见过太多这种代码了:
Service
public class OrderFacade {
Autowired
private OrderDao orderDao;
Autowired
private InventoryService inventoryService;
Autowired
private PaymentService paymentService;
Autowired
private LogisticsService logisticsService…
2026/6/20 5:45:54