spring IntelliJ Sping Boot 无法找到或加载主类

hfwmuf9z  于 2024-01-05  发布在  Spring
关注(0)|答案(1)|浏览(276)

当我尝试运行应用程序时,我得到:

  1. Error: Could not find or load main class com.example.springboot.JgsbrmqApplication
  2. Caused by: java.lang.ClassNotFoundException: com.example.springboot.JgsbrmqApplication

字符串
主要类别:

  1. package com.example.springboot;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class JgsbrmqApplication {
  6. public static void main(String[] args) {
  7. SpringApplication.run(JgsbrmqApplication.class, args);
  8. }
  9. }


我已经尝试了所有方法:重新加载项目,mvn clean install(这会给出一个错误,与Java 17有关):

  1. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.11.0:compile (default-compile) on project jgsbrmq: Fatal error compiling: error: release version 17 not supporte
  2. d -> [Help 1]
  3. [ERROR]
  4. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  5. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  6. [ERROR]
  7. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  8. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException


这是我的pom.xml。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.2.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>jgsbrmq</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>jgsbrmq</name>
  15. <description>Demo project for Spring Boot and RabbitMQ</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-amqp</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.amqp</groupId>
  40. <artifactId>spring-rabbit-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. <configuration>
  50. <excludes>
  51. <exclude>
  52. <groupId>org.projectlombok</groupId>
  53. <artifactId>lombok</artifactId>
  54. </exclude>
  55. </excludes>
  56. </configuration>
  57. </plugin>
  58. <!--<plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>3.11.0</version>
  62. </plugin>-->
  63. </plugins>
  64. </build>
  65. </project>

7hiiyaii

7hiiyaii1#

我也犯了同样的错误。
这对我来说是固定的。Intellij 2023.2.5无效缓存如下:
文件->无效缓存. ->只检查第一->无效并重新启动
x1c 0d1x的数据

相关问题