我刚刚使用Java完成了聊天应用程序,它运行良好。
现在我的团队负责人要求我在应用程序中添加安全套接字层 ( SSL )。
没有 SSL:我在server.xml中使用了这个配置
<Connector connectionTimeout="20000" maxThreads="200" port="8089" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8" />
添加 SSL:我在server.xml中添加了以下代码
<Connector SSLEnabled="true" clientAuth="false" maxThreads="150" port="8090" protocol="HTTP/1.1" scheme="https" secure="true" sslProtocol="TLS" />
但我正在获取该页面,因为Internet Explorer 无法显示该网页
谁能告诉我如何添加该功能?