ava: 无法访问org.springframework.boot.SpringApplication 错误的类文件: /D:/ruanjian/apache-maven-3.9.0-bin/apache-maven-3.9.0/repository/org/springframework/boot/spring-boot/3.1.0/spring-boot-3.1.0.jar!/org/springframework/boot/SpringApplication.class 类文件具有错误的版本 61.0, 应为 52.0 请删除该文件或确保该文件位于正确的类路径子目录中。
时间: 2023-11-19 08:52:50 浏览: 192
这个错误提示是因为你的项目使用的是 JDK 8 或者更低版本,而 Spring Boot 3.1.0 需要使用 JDK 11 或者更高版本。你需要升级你的 JDK 版本为 JDK 11 或者更高版本,然后重新构建你的项目,就可以解决这个问题了。另外,你也可以尝试将 Spring Boot 的版本降低到适合你当前 JDK 版本的版本。
相关问题
Invoke-Expression : 所在位置 行:1 字符: 519 + ... Library\usr\bin;D:\Anaconda\Library\bin;"D:\ruanjian\Java\bin;D:\ruan ... + ~~~~~~~~~~~~~~~~~~~~ 表达式或语句中包含意外的标记“D:\ruanjian\Java\bin”。 所在位置 D:\Anaconda\shell\condabin\Conda.psm1:76 字符: 9 + Invoke-Expression -Command $activateCommand; + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ParserError: (:) [Invoke-Expression], ParseException + FullyQualifiedErrorId : UnexpectedToken,Microsoft.PowerShell.Commands.InvokeExpressionCommand 无法激活 conda 环境。 请打开 Anaconda 提示符,然后在那里运行 `D:\Anaconda\condabin\conda.bat init powershell`。
这个错误消息显示了一个 PowerShell 解析错误,它指出了一个意外的标记“D:\ruanjian\Java\bin”。据我所知,这个错误通常是由于环境变量设置不正确引起的。你可以检查一下你的环境变量设置,确保它们没有包含任何错误的路径。另外,请注意,你的错误消息中提到了一个建议操作,即运行 `D:\Anaconda\condabin\conda.bat init powershell`。你可以尝试执行这个命令,看看它是否能够解决你的问题。
cmd报错DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality. Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple d:\ruanjian_wr\gis_py27_wr\arcgis10.2\lib\site-packages\pip_vendor\urllib3\util\ssl_.py:164: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings InsecurePlatformWarning
这个错误是Python 2.7已经不再维护,建议升级到新版本的Python。pip 21.0将在2021年1月停止对Python 2.7的支持,所以你也需要升级pip。同时,错误还提示SSL连接可能存在问题,因为当前平台不安全,建议升级到新版本的Python来解决这个问题。你可以点击提供的链接获取更多信息。
阅读全文