程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Java 上傳文件到 SFTP 拋異常 java.lang.NoClassDefFoundError: Could not initialize class sun.security.ec.SunEC 的解決辦法,sun.security包下載

Java 上傳文件到 SFTP 拋異常 java.lang.NoClassDefFoundError: Could not initialize class sun.security.ec.SunEC 的解決辦法,sun.security包下載

編輯:JAVA綜合教程

Java 上傳文件到 SFTP 拋異常 java.lang.NoClassDefFoundError: Could not initialize class sun.security.ec.SunEC 的解決辦法,sun.security包下載


最近從 Op 那裡報來一個問題,說是SFTP上傳文件不成功。拿到的 Exception 如下:

Caused by: java.lang.NoClassDefFoundError: Could not initialize class sun.security.ec.SunEC
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:1.7.0_111]
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) ~[?:1.7.0_111]
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:1.7.0_111]

奇了怪了,以前都好好,怎麼突然找不到 Class 了,上客戶環境一看,升級了 JDK:

java version "1.7.0_111"
OpenJDK Runtime Environment (rhel-2.6.7.2.el6_8-x86_64 u111-b01)
OpenJDK 64-Bit Server VM (build 24.111-b01, mixed mode)

那也不至於找不到 Class 啊,所需要的 SunEC.jar 好好的放在 ext 目錄呢。

最後還是 Google 大神幫助,在 JDK 的 問題列表找到原因,OpenJDK 由於版權問題,去掉了某些 Oracle JDK 才有的東西,而 SunEC 被 nss 替換了,而且 nss 需要更新版本。

https://bugzilla.redhat.com/show_bug.cgi?id=1332867

在客戶機器上升級 nss 為 3.21 後,問題解決。

nss-softokn-freebl-3.14.3-23.3.el6_8.x86_64
nss-3.21.0-8.el6.x86_64
nss-tools-3.21.0-8.el6.x86_64

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