当单击spring-context.xml的ref定义时,打开特定的类而不是bean定义

时间:2016-05-20 01:27:16

标签: xml spring intellij-idea ide keyboard-shortcuts

我的 spring-context.xml

<bean id="aBean" class="com.example.A">
    <constructor-arg ref="bBean"/>
</bean>

<bean id="bBean" class="com.example.B">
    <!-- Properties -->
</bean>

假设我在 spring-context.xml 文件中有两个bean。此处 bBean 使用constructor注入 aBean 。我使用众所周知的 ref 属性来注入 bBean

当我 Ctrl + 点击bBean上的时,我的鼠标光标移动到XML上bBean的bean定义。

当我点击com.example.B bBean任何快捷键<constructor-arg ref="bBean"/>.时,我如何打开课程 IntelliJ IDEA 2016.1.2 Ultimate ?我不知道。

使用 BasedOn

1 个答案:

答案 0 :(得分:0)

经过一段时间的搜索,我找到了答案

单击<{1}}定义的bean时,可以单击 Ctrl + Shift + B 直接进入类p>

操作名称为 ref

enter image description here