Eclipse:Spring WebFlow 中的 Spring bean 自动完成?
我正在使用 Spring Web Flow 1.0 和 Spring 2.0(bean 在 XML 中定义)。
在 eclipse (Indigo 3.7) 中,我想在编写 Web 流时为我的 bean 启用自动完成功能。我已经在使用 Spring IDE 插件了。
示例(我想提示操作 - bean 和方法的自动完成):
<action-state id="doDeleteSelection">
<action bean="pm.TypoController" method="doDeleteElement" />
<transition to="elements" />
</action-state>
这可能吗?
I am using Spring Web Flow 1.0 and Spring 2.0 (beans are defined in XMLs).
In eclipse (Indigo 3.7), I'd like to enable autocompletion for my beans when writing web flows. I am already using Spring IDE plugin.
Example (I'd like to prompt autocompletion for action - bean and method):
<action-state id="doDeleteSelection">
<action bean="pm.TypoController" method="doDeleteElement" />
<transition to="elements" />
</action-state>
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。此行为在 Spring WebFlow 编辑器中可用。 SpringIDE 使用此编辑器提供基本的 WebFlow 编辑。如果您想要更复杂的图形编辑器,那么您应该下载 SpringSource 工具套件:
http://www.springsource。 com/developer/sts
可以将 STS 安装到现有的 Eclipse 实例中。
我必须说,我对您没有找到此功能感到有点惊讶,因为所有 webflow 文件都默认使用 webflow 编辑器。也许还有另一个问题正在发生。
Yes. This behavior is available in the Spring WebFlow editor. SpringIDE provides basic WebFlow editing using this editor. If you want a more sophisticated graphical editor, then you should download SpringSource Tool Suite:
http://www.springsource.com/developer/sts
It is possible to install STS into an existing Eclipse instance.
I must say that I am a little surprised that you are not finding this feature since the use of the webflow editor should be default for all webflow files. Perhaps there is another problem going on.