Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file

这篇具有很好参考价值的文章主要介绍了Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

maven打包报错

org/ springframework /boot / maven/BuildInfoMojo hasbeen copiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 52.0

java 运行时的最新版本(类文件版本 61.0)编译的,该版本的 Java 运行时只识别 52.0 以下的类文件版本
原因:
根据 Spring Boot with spring version 2.5.7 fails repackage with jdk 1.8 这篇文章中下面的说法
java runtime版本,java,spring,spring boot
目标org.springframework.boot:spring-boot-maven插件:3.0.0-M1:重新打包失败:由于API不兼容,无法在插件“org.springfframework.boot:spring-boot maven插件:3.0.0-M1”中加载mojo“重新打包”:org.codehaus.plexus.component.repository.exeption.ComponentLookupException:org/springframework/boot/maven/RepackageMojo已由较新版本的Java Runtime(类文件版本61.0),此版本的Java Runtime仅识别52.0以下的类文件版本

在你的 pom 中使用的“spring boot maven插件”版本。如果没指定spring-boot-maven-plugin 的版本,就会拿取最新的版本打包,但是目前高版本的为未必适合1.8的jdk,如果它确实是您想要用于 spring boot 项目的版本。
为了解决这个问题,就必须明确指定spring-boot-maven-plugin的版本

解决方式:指定版本号文章来源地址https://www.toymoban.com/news/detail-541751.html

<plugin>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-maven-plugin</artifactId>
	<!--指定版本号 -->
	<version>2.7.1</version>
	<configuration>
		<includeSystemScope>true</includeSystemScope>
	</configuration>
	<executions>
		<execution>
			<goals>
				<goal>repackage</goal>
				<goal>build-info</goal>
			</goals>
		</execution>
	</executions>
</plugin>

到了这里,关于Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包