程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 出現異常:Unsupported major.minor version,major.minor

出現異常:Unsupported major.minor version,major.minor

編輯:JAVA綜合教程

出現異常:Unsupported major.minor version,major.minor


今天在使用springboot的最新版本的時候出現了這個問題 ,拋出來的異常是:UnsupportedClassVersionError  

打開異常的源碼看了一下

 * Thrown when the Java Virtual Machine attempts to read a class
 * file and determines that the major and minor version numbers
 * in the file are not supported.

很明顯,是因為是因為去讀一個版本不支持的類文件導致的 ,然後我看了一下springboot的jetty是什麼版本的,發現這個是最新版本的,估計jetty的最新版本是JDK1.8的吧

後來在官網查看到的結果果然是這樣的,那麼當然是升級JDK的版本咯 

因為現在的eclipse默認的都只值支持到1.7 所以對於1.8我們還需要自己安裝插件  

具體的安裝過程,我是從網上搜索的 下面是鏈接:
http://jingyan.baidu.com/article/d169e186a8532a436611d8a7.html

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved