如何让 IntelliJ 理解注释
我最近从使用 Eclipse 切换到 IntelliJ,并且我更喜欢这种体验。
但是,IDE 无法理解任何注释。我正在使用 Spring @Autowired 注释以及一些 Spring-WS 注释,IDE 告诉我它们尚未解决。
当使用 Maven 构建项目时,它构建得很好,并且注释可以在 Eclipse 中识别。
我确信这是一个简单的设置,但找不到任何有关如何设置它的信息。
I have recently switched from using Eclipse to IntelliJ, and am preferring the experience.
However, the IDE is not understanding any of the Annotations. I am using Spring @Autowired annotation as well as some of the Spring-WS annotations and the IDE is telling me that they are unresolved.
When the project is built using Maven, it builds fine, and the Annotations are recognised in Eclipse.
Im sure this is a simple setup thing, but cannot find any information on how to set it up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Peter 所说,正确导入 Maven 项目时,应该正确识别依赖项。 IntelliJ 手册有一个关于如何导入 Maven 项目的部分 。
As Peter said, when correctly importing the Maven project the dependencies should be correctly recognized. The IntelliJ manual has a section on how to import a Maven project.
郑重声明,在我们的项目 pom 中,我们具有以下依赖项:
前两者在实现 Web 服务之前就已存在,因此 Web 服务可能并不严格需要它们。
For the record, in our project pom, we have the following dependencies:
The former two have been present already before implementing a web service, so they may not be required strictly for web services.