如何让 IntelliJ 理解注释

发布于 2024-11-07 21:05:29 字数 220 浏览 4 评论 0原文

我最近从使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鲜血染红嫁衣 2024-11-14 21:05:29

正如 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.

梦回旧景 2024-11-14 21:05:29

郑重声明,在我们的项目 pom 中,我们具有以下依赖项:

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>3.0.5.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-orm</artifactId>
        <version>3.0.5.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.ws</groupId>
        <artifactId>spring-ws-core</artifactId>
        <version>2.0.1.RELEASE</version>
    </dependency>

前两者在实现 Web 服务之前就已存在,因此 Web 服务可能并不严格需要它们。

For the record, in our project pom, we have the following dependencies:

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>3.0.5.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-orm</artifactId>
        <version>3.0.5.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.ws</groupId>
        <artifactId>spring-ws-core</artifactId>
        <version>2.0.1.RELEASE</version>
    </dependency>

The former two have been present already before implementing a web service, so they may not be required strictly for web services.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文