为Tomcat服务器配置https服务
Step1. 生成证书
在命令行窗口输入以下命令: keytool -genkey -alias tomcat -keyalg RSA
该命令运行在Windows系统下
Step2.配置Connector
在Tomcat安装文件的Catalina目录下的service.xml中添加如下Connentor配置
<Connector port="8443" maxThreads="200" scheme="https" secure="true" SSLEnabled="true" keystoreFile="${user.home}/.keystore" keystorePass="changeit" clientAuth="false" sslProtocol="TLS"/>
其中keystoreFile属性为你的证书文件的放置位置 而keystorePass为你生成证书时设置的密码