SunTlsRsaPremasterSecret KeyGenerator not available

前端 未结 8 1804
逝去的感伤
逝去的感伤 2020-11-30 14:00

I encountered an error when my application tries to load a RSA Algorithm provider class from JAVA. The exception stack is as follow:

javax.jms.JMSException:          


        
8条回答
  •  执念已碎
    2020-11-30 14:37

    had a similar issue. Adding the classpath to the ext directory fixed it for me. This fix worked for me on windows 7 with java 1.6

    java -Djava.ext.dirs=lib -classpath "%java_home%\lib\ext\*" myapp.jar 
    

提交回复
热议问题