我正在尝试在 eclipse 中的 tomcat 上运行一个 servlet。当我在服务器上运行时,servlet 运行并为我提供如下链接:
“http://localhost:8443/AuthServer/Server”
我已经为 SSL 配置了我的 Tomcat 服务器,如下所示:
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="C:\Users\owner\.keystore" keystorePass="sheetalkshirsagar">
当我在服务器上运行 servlet 时,它仍然使用 http。我希望我的 servlet 链接是“https://...”而不是“http://..”。你是怎样做的?