我们手头有以下问题。我们需要自动装配这个服务:
@Service
public class myService implements ServiceInterface {}
我们希望能够访问自动装配的 myService 类的所有方法,而不仅仅是在 ServiceInterface 中声明的方法。问题是我们似乎必须通过使用限定符/资源注释来自动连接这个服务,但是使用
@Autowired
@Qualifier("myService")
ServiceInterface noGoodService;
我们无法访问 myService 的所有方法。我们怎样才能做到这一点?