tomcat 配置實現http跳轉至https

1、在tomcat的server.xml中配置以下信息:
<Connector protocol="org.apache.coyote.http11.Http11Protocol"
port="8081" minSpareThreads="5" maxSpareThreads="75"
enableLookups="true" disableUploadTimeout="true"
acceptCount="100" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
keystoreFile="C:/tomcat.key" keystorePass="changeit"
clientAuth="false" sslProtocol="TLS"/>

2、將此文件放置在上面提到的keystoreFile所指向的目錄中:

生成key的命令:keytool -genkey -keyalg RSA -alias tomcat

3、在工程的web.xml中配置以下的攔截請求,若是此種請求的話都將轉至https服務。

<security-constraint>
<web-resource-collection>
<web-resource-name>sslapp</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章