java.lang.NoClassDefFoundError:sun / security / ssl / HandshakeStateManager

问题描述 投票:0回答:1

我目前正在NetBean IDE中使用Web Service。我正在使用Apache HttpClientGET请求发送到某些RESTful API。问题是,它在junit测试中确实能很好地工作,但是当我将其编译并分配给glassfish时,它显示以下错误:

Info:   wsimport successful
Severe:   sun/security/ssl/HandshakeStateManager
java.lang.NoClassDefFoundError: sun/security/ssl/HandshakeStateManager
    at sun.security.ssl.Handshaker.init(Handshaker.java:282)
    at sun.security.ssl.Handshaker.<init>(Handshaker.java:242)
    at sun.security.ssl.ClientHandshaker.<init>(ClientHandshaker.java:160)
    at sun.security.ssl.SSLSocketImpl.initHandshaker(SSLSocketImpl.java:1329)
    at sun.security.ssl.SSLSocketImpl.doneConnect(SSLSocketImpl.java:690)
    at sun.security.ssl.SSLSocketImpl.<init>(SSLSocketImpl.java:569)
    at sun.security.ssl.SSLSocketFactoryImpl.createSocket(SSLSocketFactoryImpl.java:110)
    at org.apache.http.conn.ssl.SSLConnectionSocketFactory.createLayeredSocket(SSLConnectionSocketFactory.java:393)
    at org.apache.http.conn.ssl.SSLConnectionSocketFactory.connectSocket(SSLConnectionSocketFactory.java:384)
    at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:142)
    at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:374)
    at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:393)
    at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:236)
    at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:186)
    at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:89)
    at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
    at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:185)
    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)

这是我的代码,用于发送GET请求。有什么问题吗?

protected String getResponse(String url) throws IOException, ProviderNotAvailableException{
        HttpGet request = new HttpGet(url);

        CloseableHttpResponse response = httpClient.execute(request);

        HttpEntity entity = response.getEntity();

        if (entity != null) {
            String result = EntityUtils.toString(entity);
            return result;
        } else {
            throw new ProviderNotAvailableException("Http entity is null.");
        }
}

我的jdk版本是1.8,NetBean版本是11.0。再次,它在junit测试中运行良好。

java wsdl2java
1个回答
0
投票

我曾经使用过JDK v1.8。升级到1.8u221,问题已解决。

© www.soinside.com 2019 - 2024. All rights reserved.