您现在的位置是:网站首页 > 学无止境

springboot新手部署

ImdaM 2023-03-22 22:19:40 0人围观
简介springboot新手部署pomxml

springboot新手部署:

pom.xml

<parent>
<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:

@SpringBootApplication
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-boot-starter-parent    3.0.4切换成2.7.6即可问题解决

上一篇:暂无上篇

下一篇:spring mvc部署笔记

文章评论