java https 服务,简单的Java HTTPS服务器

本文详细记录了如何使用Java 6中的HttpsServer类建立一个轻量级HTTPS服务器,用于开发实验室中模拟设备的HTTPS连接。由于是开发工具,因此跳过了证书验证和协商过程。通过设置SSLContext、KeyManagerFactory和TrustManagerFactory,成功解决了“SSL握手失败”的问题。生成了一个自签名的keystore,并提供了相关命令行操作。
摘要由CSDN通过智能技术生成

I need to setup a really lightweight HTTPS server for a Java application. It's a simulator that's being used in our development labs to simulate the HTTPS connections accepted by a piece of equipment in the wild. Because it's purely a lightweight development tool and isn't used in production in any way at all I'm quite happy to bypass certifications and as much negotiation as I can.

I'm planning on using the HttpsServer class in Java 6 SE but I'm struggling to get it working. As a test client I'm using wget from the cygwin command line (wget https://[address]:[port]) but wget reports that it was "Unable to establish SSL connection".

If I run wget with the -d option for debugging it tells me "SSL handshake failed".

I've spent 30 minutes googling this and everything seems to just point back to the fairly useless Java6 documentation that describes the methods but doesn't actually talk about how to get the darn thing talking or provide any example code at all.

Can anyone nudge me in the right direction?

解决方案

What I eventually used was this:

try

{

// setup the socket address

InetSocketAddress address = new InetSocketAddress ( InetAddress.getLocalHost (), config.getHttpsPort () );

// initialise the HTTPS server

HttpsServer httpsServer = HttpsServer.create ( address, 0 );

SSLContext sslContext = SSLContext.getInstance ( "TLS" );

// initialise the keystore

char[] password = "simulator".toCharArray ();

KeyStore ks = KeyStore.getInstance ( "JKS" );

FileInputStream fis = new FileInputStream ( "lig.keystore" );

ks.load ( fis, password );

// setup the key manager factory

KeyManagerFactory kmf = KeyManagerFactory.getInstance ( "SunX509" );

kmf.init ( ks, password );

// setup the trust manager factory

TrustManagerFactory tmf = TrustManagerFactory.getInstance ( "SunX509" );

tmf.init ( ks );

// setup the HTTPS context and parameters

sslContext.init ( kmf.getKeyManagers (), tmf.getTrustManagers (), null );

httpsServer.setHttpsConfigurator ( new HttpsConfigurator( sslContext )

{

public void configure ( HttpsParameters params )

{

try

{

// initialise the SSL context

SSLContext c = SSLContext.getDefault ();

SSLEngine engine = c.createSSLEngine ();

params.setNeedClientAuth ( false );

params.setCipherSuites ( engine.getEnabledCipherSuites () );

params.setProtocols ( engine.getEnabledProtocols () );

// get the default parameters

SSLParameters defaultSSLParameters = c.getDefaultSSLParameters ();

params.setSSLParameters ( defaultSSLParameters );

}

catch ( Exception ex )

{

ILogger log = new LoggerFactory ().getLogger ();

log.exception ( ex );

log.error ( "Failed to create HTTPS port" );

}

}

} );

LigServer server = new LigServer ( httpsServer );

joinableThreadList.add ( server.getJoinableThread () );

}

catch ( Exception exception )

{

log.exception ( exception );

log.error ( "Failed to create HTTPS server on port " + config.getHttpsPort () + " of localhost" );

}

To generate a keystore:

$ keytool -genkey -alias alias -keypass simulator \

-keystore lig.keystore -storepass simulator

See also here.

Potentially storepass and keypass might be different, in which case the ks.load and kmf.init must use storepass and keypass, respectively.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值