關於idea中使用註解開發springmvc 500報錯

Rearpoem發表於2021-01-01

關於idea中使用註解開發springmvc 500報錯
可能是spring版本與jdk版本不匹配
將jdk14.0.2換為jdk1.8.0即可正常執行
在這裡插入圖片描述
型別 異常報告
訊息 Servlet[springmvc]的Servlet.init()引發異常

根本原因。
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: file [C:\Users\FHun\IdeaProjects\springmvc-01-mvc\out\artifacts\springmvc_01_controller_war_exploded\WEB-INF\classes\com\FHun\Controller\ControllerTest01.class]; nested exception is org.springframework.core.NestedIOException: ASM ClassReader failed to parse class file - probably due to a new Java class file version that isn’t supported yet: file [C:\Users\FHun\IdeaProjects\springmvc-01-mvc\out\artifacts\springmvc_01_controller_war_exploded\WEB-INF\classes\com\FHun\Controller\ControllerTest01.class]; nested exception is java.lang.IllegalArgumentException: Unsupported class file major version 58

報錯時使用的是jdk14.0.2
spring依賴版本為

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.1.9.RELEASE</version>
        </dependency>

後來發現可能是spring版本與jdk版本不匹配
將jdk14.0.2換為jdk1.8.0即可正常執行

相關文章