JavaWeb網站建立安全連結
阿新 • • 發佈:2019-02-19
JavaWeb專案配置https安全連結
如圖第一步:
會在使用者目錄下生成一個檔案: .keystore
如圖第五步:
在Tomcat的配置檔案server.xml中加入標籤
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="C:/Users/Administrator/.keystore(祕鑰檔案.keystore的路徑)"
keystorePass="(祕鑰檔案密碼)"/>
若想強制瀏覽器連結為https,需要在web專案的web.xml檔案中配置一個標籤
<!-- 強制瀏覽器使用https安全連線 -->
<security-constraint>
<web-resource-collection>
<web-resource-name>SSL</web-resource-name >
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>