包 org.springframework.web.bind.annotation 不存在,即使它是在 POM 中定义的

问题描述 投票:0回答:7

所以我有这个代码

import org.springframework.web.bind.annotation.GetMapping;

我的 POM 文件中已经有以下内容

<packaging>war</packaging>
    <properties>
        <spring.version>4.3.0.RELEASE</spring.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${spring.version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>${spring.version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>${spring.version}</version>
        </dependency>
    </dependencies>

然而,当我构建时,它最终抱怨包 org.springframework.web.bind.annotation 不存在

为什么?我已经添加了 spring web 作为依赖项。我做错了什么?

java spring maven spring-mvc spring-web
7个回答
44
投票

我遇到了类似的问题,我通过进入 pom.xml 文件并更改 spring boot 依赖项的artifactID 来修复它:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
</dependency>

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
</dependency>

编辑以显示说明:

我正在遵循一个教程,该教程让我使用了错误的依赖项。如果我没记错的话, spring-boot-starter-web 依赖项包含 spring-boot-starter 拥有的所有内容,以及制作基本 Web 应用程序所需的内容。所以我的应用程序正在寻找一些我假设 spring-boot-starter 不包含的 Web 依赖项。


8
投票

运行以下命令

mvn clean install

如果您使用像 intelliJ idea 或 Eclipse 这样的 IDE,请确保重新 导入项目。 这是如何在 Eclipse 中刷新 Maven 依赖项的答案

如何在Eclipse中更新maven仓库?


1
投票

对我来说,删除

spring-web
依赖是有效的。为此,请从您的
pom.xml
中删除以下内容:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>${spring.version}</version>
</dependency>

1
投票

全新安装并没有解决我的问题。我单击 Maven(Intelij 中的右侧选项卡),然后单击刷新按钮。 Maven 下载了所有内容,现在可以运行了


0
投票

尝试:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>2.6.0</version>
        </dependency>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.0</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <groupId>com.pxample</groupId>
    <artifactId>pemo</artifactId>
    <version>0.1.36-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>14</maven.compiler.source>
        <maven.compiler.target>14</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>2.6.0</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

并查看下面的示例:

https://github.com/spring-guides/gs-spring-boot/blob/main/initial/pom.xml

https://github.com/spring-guides/gs-multi-module/blob/main/complete/pom.xml


0
投票

我变了

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>${spring.version}</version>
</dependency>

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>${spring.version}</version>
</dependency>

0
投票

无论我尝试 mvn clean install 还是 maven update,我都面临同样的问题。

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-validation</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

两个依赖项

© www.soinside.com 2019 - 2024. All rights reserved.