您现在的位置是:网站首页 > 学无止境
springboot新手部署
springboot新手部署:
pom.xml
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
java/com.zm.hello.java:
public class helloWorld {
public static void main(String[] args) {
SpringApplication.run(helloWorld.class,args);
}
}
错误提示:
E:javahellosrcmainjavacomzmhelloWorld.java:3:32
java: 无法访问org.springframework.boot.SpringApplication
错误的类文件: /C:/Users/11716/.m2/repository/org/springframework/boot/spring-boot/3.0.4/spring-boot-3.0.4.jar!/org/springframework/boot/SpringApplication.class
类文件具有错误的版本 61.0, 应为 52.0
请删除该文件或确保该文件位于正确的类路径子目录中。
解决方法:
上一篇:暂无上篇
下一篇:spring mvc部署笔记