在Spring DI中,Guice的@ImplementedBy注释相当于什么? (我用Google搜索但没有结果。)
答案 0 :(得分:2)
Spring中不存在JIT默认绑定。您只能将一个实现设置为依赖项或使用命名限定符@Named或@Qualifier注释来指定实现,但这是静态绑定(不等同于@ImplementedBy Guice实现)。
我创建了一个弹簧扩展,启用了jit绑定。这个库将@ImplementedBy注释添加到Spring。请参阅https://github.com/devacfr/spring-implementedby并向我提供反馈
答案 1 :(得分:0)