启用TOMCAT的SSL



启用TOMCAT的SSL

本教程使用 JDK 6 和 Tomcat 7,其他版本类似。

基本步骤:

使用 java 创建一个 keystore 文件
配置 Tomcat 以使用该 keystore 文件
测试
配置应用以便使用 SSL ,例如 https://localhost:8443/yourApp
1. 创建 keystore 文件

执行 keytool -genkey -alias tomcat -keyalg RSA 结果如下
loiane:bin loiane$ keytool -genkey -alias tomcat -keyalg RSA
Enter keystore password:  password
Re-enter new password: password
What is your first and last name?
   [ Unknown ]:  Loiane Groner
What is the name of your organizational unit?
   [ Unknown ]:  home
What is the name of your organization?
   [ Unknown ]:  home
What is the name of your City or Locality?
   [ Unknown ]:  Sao Paulo
What is the name of your State or Province?
   [ Unknown ]:  SP
What is the two-letter country code for this unit?
   [ Unknown ]:  BR
Is CN=Loiane Groner, OU=home, O=home, L=Sao Paulo, ST=SP, C=BR correct?
   [ no ]:  y
 
Enter key password for
    (RETURN if same as keystore password):  password
Re-enter new password: password


这样就在用户的主目录下创建了一个 .keystore 文件

2. 配置 Tomcat 以使用 keystore 文件

打开 server.xml 找到下面被注释的这段
<!--
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
    maxThreads="150" scheme="https" secure="true"
    clientAuth="false" sslProtocol="TLS" />
-->

干掉注释,并将内容改为
< Connector  SSLEnabled ="true"  acceptCount ="100"  clientAuth ="false"
    disableUploadTimeout
="true"  enableLookups ="false"  maxThreads ="25"
    port
="8443"  keystoreFile ="/Users/loiane/.keystore"  keystorePass ="password"
    protocol
="org.apache.coyote.http11.Http11NioProtocol"  scheme ="https"
    secure
="true"  sslProtocol ="TLS"   />

3. 测试

启动 Tomcat 并访问 https://localhost:8443. 你将看到 Tomcat 默认的首页。

需要注意的是,如果你访问默认的 8080 端口,还是有效的。

4. 配置应用使用 SSL

打开应用的 web.xml 文件,增加配置如下:
< security-constraint >
     < web-resource-collection >
         < web-resource-name >securedapp </ web-resource-name >
         < url-pattern >/* </ url-pattern >
     </ web-resource-collection >
     < user-data-constraint >
         < transport-guarantee >CONFIDENTIAL </ transport-guarantee >
     </ user-data-constraint >
</ security-constraint >

将 URL 映射设为 /* ,这样你的整个应用都要求是 HTTPS 访问,而 transport-guarantee 标签设置为 CONFIDENTIAL 以便使应用支持 SSL。

如果你希望关闭 SSL ,只需要将 CONFIDENTIAL 改为 NONE 即可。

如果是MAVEN的TOMCAT插件,则加入如下配置
< build >
         < finalName >test-dropbox </ finalName >
         < plugins >
             < plugin >
                 < groupId >org.apache.maven.plugins </ groupId >
                 < artifactId >maven-compiler-plugin </ artifactId >
                 < version >2.5.1 </ version >
                 < configuration >
                     < source >1.6 </ source >
                     < target >1.6 </ target >
                 </ configuration >
             </ plugin >
             < plugin >
                 < groupId >org.apache.tomcat.maven </ groupId >
                 < artifactId >tomcat7-maven-plugin </ artifactId >
                 < version >2.0 </ version >
                 < configuration >
                     < httpsPort >8443 </ httpsPort >
                     < keystorePass >password </ keystorePass >
                     < keystoreFile >C:\Users\PAUL\.keystore </ keystoreFile >
                 </ configuration >
             </ plugin >
         </ plugins >
     </ build >


转载 http://www.blogjava.net/paulwong/archive/2013/10/14/404941.html

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值