Java web加密之将应用从http换成https的方法

Posted __Ant

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java web加密之将应用从http换成https的方法相关的知识,希望对你有一定的参考价值。

感谢文章http://blog.csdn.net/zhangzuomian/article/details/50324395 

 但未测试过,先记录下

大致分2步:1、获取证书。2、修改tomcat的config/server.xml和项目中web.xml配置

打开config/server.xml,取消下面8443端口代码的注释,并修改如下:

<Connector port="8443"protocol="HTTP/1.1" SSLEnabled="true"     maxThreads="150" scheme="https" secure="true"     
  clientAuth="false"keystoreFile="D:/AppServer/Tomcat/apache-tomcat-6.0.32/conf/tomcat.keystore"     
  keystorePass="deleiguo" sslProtocol="TLS" />   

  注:
keystoreFile:证书文件的位置,keystorePass 是keystore的密码(你在生成证书的时候,会有的keystore密码和tomcat主密码)

项目中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://blog.csdn.net/rainyspring4540/article/details/68925073

 



以上是关于Java web加密之将应用从http换成https的方法的主要内容,如果未能解决你的问题,请参考以下文章

http协议加密解密web安全

如何利用VLC或FFMPEG将HTTP的串流转换成RTMP

记一次http网站换成https的处理

#WEB安全基础 : HTTP协议 | 0x16 HTTPS:加密的秘密

无法从 Worklight Liberty 服务器中的 HTTP 适配器调用 java 类

将http换成https