我想运行仅使用 HTTPS (8443) 的嵌入式 tomcat。我根本不想使用 8080 端口。有什么想法吗?
连接器 httpsConnector = new Connector();
httpsConnector.setPort(httpsPort);
httpsConnector.setSecure(true);
httpsConnector.setScheme("https");
httpsConnector.setAttribute("keystoreFile", appBase + "/.keystore");
httpsConnector.setAttribute("clientAuth", "false");
httpsConnector.setAttribute("sslProtocol", "TLS");
httpsConnector.setAttribute("SSLEnabled", true);
Tomcat tomcat = new Tomcat();
tomcat.getService().addConnector(httpsConnector);
tomcat.setPort(8080);
连接器 defaultConnector = tomcat.getConnector();
defaultConnector.setRedirectPort(8443);
tomcat.setBaseDir(".");
tomcat.getHost().setAppBase(appBase);
StandardServer 服务器 = (StandardServer) tomcat.getServer();
AprLifecycleListener listener = new AprLifecycleListener();
server.addLifecycleListener(listener);
谢谢