标签:
该原因为配置的端口不是默认端口80。需要将其他端口改为默认的即可。
在web项目的web.xml 中配置如下
<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>
标签:
原文地址:http://www.cnblogs.com/jimw/p/4870960.html