网站的http和https互相转换
之前做一个网站的登录需要用https登录,然后登录成功之后需要跳转到http。我在server.xml配置了安全证书,也在web.xml里面配置了
<login-config>
<!-- Authorization setting for SSL -->
<auth-method>CLIENT-CERT</auth-method>
<realm-name>Client Cert Users-only Area</realm-name>
</login-config>
<security-constraint>
<!-- Authorization setting for SSL -->
<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访问都会跳到https。但是不能实现我的登录成功之后跳回到http,所以请教各位。
我的服务器是tomcat6
ssl
tomcat
https
http
java
------解决方案--------------------没涉及过 这种,友情帮顶一下
------解决方案--------------------