tomcat下web应用http访问自动跳转为https形式访问

  • Post author:
  • Post category:其他


tomcat下web应用http访问自动跳转为https形式访问

注意:这里的tomcat版本为tomcat-5.5.20

  1. tomcat-5.5.20正常配置https
  2. tomcat中需要正常“http访问自动跳转为https形式访问”的web应用中的web.xml进行如下配置

<security-constraint>

<web-resource-collection>

<web-resource-name>OPENSSL</web-resource-name>

<url-pattern>/*</url-pattern>

</web-resource-collection>

<user-data-constraint>

<transport-guarantee>CONFIDENTIAL</transport-guarantee>

</user-data-constraint>

</security-constraint>

注:

tomcat-5.0.28


中以


http


形式访问其


web


应用时

【无法】

自动跳转


https





版权声明:本文为jackpk原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。