尝试执行简单的spring-boot应用程序,得到标记错误,

时间:2017-09-25 07:16:28

标签: spring-boot m2eclipse spring-tool-suite

表示无法读取或不是有效的ZIP文件,项目中的/.m2/repository/org/springframework/spring-web/4.3.11.RELEASE/spring-web-4.3.11.RELEASE.jar

STS Error Screenshot

这可能是一个STS maven错误,我试着用eclipse火星2,它工作正常..不明白问题在哪里..?需要帮助......谢谢

的pom.xml

http://maven.apache.org/xsd/maven-4.0.0.xsd">     4.0.0

<groupId>com.de.course</groupId>
<artifactId>course-api</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>course-api</name>
<description>Course API Data</description>

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

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
</properties>

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

    <dependency>
        <groupId>org.apache.derby</groupId>
        <artifactId>derby</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

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

项目结构

project structure

来自项目的Maven Dependencies文件夹

enter image description here

maven build

3 个答案:

答案 0 :(得分:1)

似乎只是一个Eclipse刷新问题(如果你有互联网访问,至少)。从工具栏中尝试Project -> Clean,然后右键单击项目Maven -> Update project

如果问题仍然存在,请尝试从Eclipse中删除项目并重新导入它。

无论如何,有时候Eclipse会让Maven依赖变得混乱。因此,我喜欢在系统中安装自己的Maven并在Eclipse外运行mvn clean install以确保项目正确构建。

答案 1 :(得分:0)

您需要将spring-web依赖项添加到pom.xml中 将以下内容添加到pom.xml中的dependencies标记

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>4.3.11.RELEASE</version>
</dependency>

答案 2 :(得分:0)

下载时jar可能已损坏。从.m2文件夹中删除jar并从eclipse(Maven -> Update project)更新项目。它应该自动下载已删除的依赖项。