0

我在 LogInWindow(JFrame) 中有一个 JTextField。在该 JTextField 中,用户输入它的名称。

我有另一个 StudentWindow (JFrame),它的构造函数将该用户名 String 作为参数。

在我的 xml 文件中,我如何注入来自 JTextField 的输入?

<!-- GUI Beans -->
<bean id="logInWindow" class="gui.LogInWindow">
    <constructor-arg ref="controller"/>
    <property name="nameJTextField" value="?? Need help here ??"/>
</bean>

<bean id="studentWindow" class="gui.StudentWindow">
<constructor-arg ref="????????"/>
</bean> 

提前致谢。

4

1 回答 1

1

你不能。JFrameSpring 解析 XML 并在您的任何一个显示之前基于它创建 bean 。除非我完全误解了你的情况......

于 2012-12-25T20:24:36.280 回答