内容辅助无法在带有“Spring Project Nature”的 Java 项目的 applicationContext.xml 中工作日食中
我有一个使用 Spring 3 和 Hibernate 3 的简单 Java 项目。
我使用 Spring IDE 添加了“Spring Project Nature”。 applicationContext.xml 文件位于项目的 src 文件夹中。
Eclipse 3.5 的内容辅助功能似乎在 applicationContext.xml 中不起作用:
- 在 bean 标记的 class 属性内,它似乎无法在我的 Java 项目中找到包和类。
- 它无法帮助任何属性,例如在 applicationContext.xml 中查找 ref 属性的现有 bean。
I have a simple Java project using Spring 3 and Hibernate 3.
I've added the "Spring Project Nature" using Spring IDE. The applicationContext.xml file is in the src folder of the project.
The Content Assist feature of Eclipse 3.5 doesn't seem to work in applicationContext.xml:
- Inside the class attribute of bean tag it can't seem to find the packages and classes in my Java Project.
- It can't assist with any attribute, like finding existing beans in applicationContext.xml for the ref attribute.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果项目属性>步骤1中的Spring不存在,安装:
If Project Properties > Spring in step 1 doesn't exist, install:
Spring IDE 和 STS 仅在类或相应属性中输入至少一个字符后才完成 Java 类和包名称。
如果您想通过 XML 文件中的名称获取 Bean 引用的内容帮助,您需要定义一个配置集(项目属性 > Spring > Bean 支持 > 配置集)。
Spring IDE and STS only complete Java class and package names after at least one character has been typed into the class or corresponding attributes.
If you want to get content assist for Bean references by name across XML files you need to define a Config Set (Project Properties > Spring > Bean Support > Config Sets).
要在 Eclipse 中为 Spring 项目启用内容辅助,
转到“项目”->“属性”->“Spring”->“配置检测”,然后选择自动检测的所有选项。
To enable content assist for a spring project in Eclipse,
go to Projects->Properties->Spring->Config Detection and select all the options for auto detection.