假设我有 2 个服务类:
UserService
ProductService
如果在我的 ProductService 类中注入 UserService 是不是错了?
public class ProductserviceImpl implements ProductService {
@Autowired
UserService userService;
@Override
public void someThing() {
..
userService.otherThing(..);
..
}
}
我知道作为替代方案,我可以创建另一个注入 UserService 和 ProductService 的类,但是为这个类命名非常棘手:) 在 SOA 世界中这些类型的类有名称吗?