英文: Abstract builder 问题 所以我有一个抽象的Transaction类,它有多个实现(Payment、File)。 我想为Transaction(抽象)+实现者创建一个构建器。 我...
如何避免在层A/层B需要相同功能时创建重复的微服务?
英文: how to avoid creating the duplicate microservice when there is an need of same functionality in ...
Java 内置的 Observable 推送通知
英文: Java built-in Observable push notifications 问题 UPDATE 为了更好地理解,我已添加完整的代码。 我正在尝试理解如何使用Java内置的Obser...
我们在计算包的外出耦合值时,是否考虑依赖接口?
英文: Do we count depending interfaces while calculating Efferent Coupling value for a package 问题 我们在计...
捕捉并重新抛出相同的自定义异常
英文: catching and re throwing same custom exception 问题 我有一个Spring JobRunner组件,其中有一个`run()`方法,该方法会抛出我的...
面向对象设计:可扩展和易维护的汽车销售系统
英文: Object oriented Design: Scalable and maintainable car store system 问题 我之前的思路和解决方案: 我考虑到需求包含了两个属性...
一个没有任何实现和变量的抽象类是否实际上就是接口?
英文: Is an abstract class without any implementation and variables effectively interface? 问题 我正在复习面向对...
Java DAO模式 – 在不使用多个类的情况下分离数据库通信责任
英文: Java DAO Pattern - Separate Database Communication Responsibility Without Using Multiple Classes...
调用控制器从kafka组件
英文: Call Controller from kafka component 问题 I've been searching a lot about it, and the only two thi...
观察者模式如何以及为何实现了MVC架构风格?
英文: How and why can the Observer Pattern implement the MVC Architectural Style? 问题 我想更好地理解观察者模式如何用于实...
17