java - 错误 : Could not find or load main class . .. 在 Spring Boot 1.5.9 版本中,但在 1.4.7 版本中没有

标签 java spring-boot

我试图从 https://start.spring.io/ 生成一个启动 spring boot 项目

当我使用 Spring Boot 1.5.9 版本生成项目时,我得到以下内容

Error: Could not find or load main class com.example.demo120417.Demo120417Application

但是;将版本更改为 Spring Boot 1.4.7 加载并运行主类,没有错误。

我的依赖项中有执行器、安全性、thymeleaf、devtools、h2。

enter image description here

<?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>

<groupId>com.example</groupId>
<artifactId>demo120417</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo120417</name>
<description>Demo project for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.9.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-actuator</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <scope>runtime</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.security</groupId>
        <artifactId>spring-security-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>

造成这种情况的根本原因是什么?我花了将近 1 天的时间试图弄清楚构建路径是否有问题。通常项目上有红色感叹号会提示我图书馆问题。

enter image description here

enter image description here

最佳答案

我也遇到了同样的问题。试试这个:

Right Click the project -> Maven -> Update Project

然后重新运行该项目。

关于java - 错误 : Could not find or load main class . .. 在 Spring Boot 1.5.9 版本中,但在 1.4.7 版本中没有,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47627117/

相关文章:

java - 如何在 OSX 10.9.4 上安装 Eclipse

java - BigQuery : How to load library into java code

java - 在 Spring Boot 中使用 cookie 进行身份验证

java - 过滤器在注册为 Spring bean 时调用两次

java - IntelliJ IDEA spring boot 热重载手动保存?

java - JVM 崩溃后堆转储文件是如何创建的

java - 如何制作重叠在任务栏上的 Windows 10 应用程序?

java - JFrame 不采用实际屏幕尺寸

java - 在 Webflux 中解决 Pageable

Spring:从有关系的表中删除数据