我正在使用STS eclipse IDE 2.8版
是否可以从Bean名称直接导航到类?
在下面的示例中,IE到其bean名称为’foo.bar的类:
public class SomeClass() {
@Autowired(required=true)
@Qualifier("foo.bar")
private FooServive myFooService;
...
}
我知道我可以从Spring Explorer选项卡中找到它,但是我想错过中间人.
最佳答案
原文链接:https://www.f2er.com/spring/531752.html