今天在使用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