发布于 2017-08-19 06:23:55 | 170 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的Tomcat教程,程序狗速度看过来!

Tomcat 开源Web应用服务器

Tomcat 服务器是一个免费的开放源代码的Web 应用服务器,属于轻量级应用服务器,在中小型系统和并发访问用户不是很多的场合下被普遍使用,是开发和调试JSP 程序的首选。


这篇文章主要介绍了Tomcat配置https并访问http自动跳转至https的相关资料,需要的朋友可以参考下

Tomcat配置https、访问http自动跳转至https

1、配置Tomcat,打开$CATALINA_HOME/conf/server.xml,修改如下


<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

修改参数==>


<Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="443" />

<!--
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />
-->

去掉注释且修改参数==>


<Connector port="443" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true" 
    maxThreads="150" scheme="https" secure="true" 
    clientAuth="false" sslProtocol="TLS"  
    keystoreFile="d:/dev/tomcat.keystore" 
    keystorePass="123456" /> 

<!--
<Connector port="8009" enableLookups="false" protocol="AJP/1.3" redirectPort="8443" />
-->

修改参数==>


<Connector port="8009" enableLookups="false" protocol="AJP/1.3" redirectPort="443" />

 二、局部https安全连接配置,打开web项目\WEB-INF\web.xml文件,在该文件</welcome-file-list>后面加上这样一段:


<!-- 局部https安全连接配置 -->
<security-constraint>
  <display-name>Auth</display-name>
  <web-resource-collection>
    <web-resource-name>Protected Area</web-resource-name>
    <!--
    <url-pattern>/index/json/login</url-pattern>
    <url-pattern>/admin/json/admin/companyLogin</url-pattern>
    <url-pattern>/admin/companyLogin</url-pattern>
    <url-pattern>/admin/agentLogin</url-pattern>
    -->
    <url-pattern>/user/*</url-pattern>
    <url-pattern>/main/index</url-pattern>
  </web-resource-collection>
  <user-data-constraint>
    <description>SSL required</description>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
  </user-data-constraint>
</security-constraint>
  

上述配置完成后,重启TOMCAT后即可以使用SSL。IE地址栏中可以直接输入地址不必输入“http://” 或者 “https://” ;也可以输入 “http:// ” 会跳转成为 “https://” 来登录

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务