tomcat用https替换http的方法

1.首先用jdk自带的工具keytool生成一个证书keystore

C:\Documents and Settings\Administrator>keytool -genkey -alias sxta -keyalg RSA
-keystore D:\sxta.keystore
Enter keystore password:  sxta
Keystore password is too short - must be at least 6 characters
Enter keystore password:  sxtaweb
What is your first and last name?
  [Unknown]:  **
What is the name of your organizational unit?
  [Unknown]:  山西**科技有限公司
What is the name of your organization?
  [Unknown]:  山西**科技有限公司
What is the name of your City or Locality?
  [Unknown]:  太原
What is the name of your State or Province?
  [Unknown]:  山西
What is the two-letter country code for this unit?
  [Unknown]:  cn
Is <CN=, OU=q?npW?q??        Pl?, O=q?npW?q??       Pl?, L=*?, ST=q, C=cn>
correct?
  [no]:  y

Enter key password for <sxta>
        (RETURN if same as keystore password):

C:\Documents and Settings\Administrator>

 


2.http://java.sun.com/products/archive/jsse/ 去下载jsse,下载下来后是一个zip包,把里边lib目录下的jar包jcert.jar, jnet.jar, jsse.jar拷贝到$JAVA_HOME/jre/lib/ext  

 

3.修改tomcat目录下的server.xml文件,增加
              

  <Connector 
                port="8443" protocol="HTTP/1.1" minSpareThreads="5" maxSpareThreads="75" 
                enableLookups="true" disableUploadTimeout="true" 
                acceptCount="100" maxThreads="200" 
                scheme="https" secure="true" SSLEnabled="true" 
                keystoreFile="d:/credit.keystore" keystorePass="creditworld" 
                clientAuth="false" sslProtocol="TLS"/>

 其中keystorePass的值为生成keystore时输入的密码,keystoreFile的值为证书存放的路径.

4.web.xml 增加

<security-constraint>  
    <web-resource-collection>  
        <web-resource-name>sslapp</web-resource-name>  
        <url-pattern>/*</url-pattern>  
        <http-method>GET</http-method>  
        <http-method>POST</http-method>  
    </web-resource-collection>  
    <user-data-constraint>  
        <transport-guarantee>CONFIDENTIAL</transport-guarantee>  
    </user-data-constraint>  
</security-constraint>  

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值