编辑web.xml 文件 ,通常在自己项目下面 $CATALINA_HOME/webapps/myapp/WEB-INF/web.xml
1. 编辑 web.xml
2.增加一个 <security-constraint>
<web-app>
...
<security-constraint>
<web-resource-collection>
<web-resource-name>HTTPS</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
</web-app>
如果只想登录页面跳转, 修改 <url-pattern>/*</url-pattern> 来完成