给自己的网站加上SSL安全认证

首先下载证书

给自己的网站加上SSL安全认证

文件解压缩之后得到一个后缀为pfx的证书文件 和 一个密码文本文件

给自己的网站加上SSL安全认证

将后缀为pfx的证书文件放在resources目录下

给自己的网站加上SSL安全认证

在application.yml文件中配置

# 80就是HTTP的端口,443就是https的端口
http:
  port: 80

server:
  port: 443
  ssl:
    key-store: classpath:文件名.pfx
    key-store-password: 密码
    key-store-type: PKCS12

当用户用http请求某个资源,而该资源本身又被设置了必须要https方式访问,此时Tomcat会自动重定向到这个redirectPort设置的https端口。

在springboot启动类中加入以下代码:

@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;

}

注意:

这里必须在服务器运行, 本地不能运行。

上一篇:Flink tableapi数据写入MySQL


下一篇:Aapache Tomcat AJP 文件包含漏洞(CVE-2020-1938)