Springboot项目配置阿里云ssl证书

  1. 我使用的是阿里云免费ssl证书,申请一下通过审核就好
    在这里插入图片描述

  2. 签发之后先下载到本地,我这里是下载的tomcat的
    在这里插入图片描述

  3. 解压缩之后得到这两个东西:
    在这里插入图片描述

  4. 将.pfx文件放到springboot项目的resources目录下:
    在applicatio.yml中添加配置:

http:
  port: 80
server:
  port: 443
  ssl:
    key-store: classpath:1655744_nichang.site.pfx
    key-store-password: xxxxxx(pfx-password.txt中的内容)
    keyStoreType: PKCS12
  1. 设置自动重定向http到https(80端口->443端口):
    在启动类中加入以下代码:(注意网上有些代码中的EmbeddedServletContainerFactory找不到是因为springboot2.X之后改了写法)
    @Bean
    public ServletWebServerFactory servletContainer() {
        TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory() {
            @Override
            protected void postProcessContext(Context context) {
                SecurityConstraint securityConstraint = new SecurityConstraint();
                securityConstraint.setUserConstraint("CONFIDENTIAL");
                SecurityCollection collection = new SecurityCollection();
                collection.addPattern("/*");
                securityConstraint.addCollection(collection);
                context.addConstraint(securityConstraint);
            }
        };
        tomcat.addAdditionalTomcatConnectors(redirectConnector());
        return tomcat;
    }

    private Connector redirectConnector() {
        Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
        connector.setScheme("http");
        connector.setPort(80);
        connector.setSecure(false);
        connector.setRedirectPort(443);
        return connector;
    }
  1. 这样就可以在访问80端口时自动重定向到https
评论 12
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值