spring boot接口 支持https

Posted Mars、一切都会好起来

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot接口 支持https相关的知识,希望对你有一定的参考价值。

1.拥有证书,可自己生成测试用javatool生成

keytool -keystore [keyname].jks -genkey -alias tomcat -keyalg RSA

接下来输入相关信息即可

2.把证书添加到项目中/src/main/resources/目录下

3.增加配置

server.port= 8443
server.ssl.key-store= classpath:mykeys.jks
server.ssl.key-store-password= yourpassword
server.ssl.key-password= yourpassword

 

4.配置用户访问http自动跳转到https(http与https均可访问)

@Configuration
public class HttpsConfiguration {

    @Bean
    public EmbeddedServletContainerFactory servletContainer() {
        TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory() {
            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(httpConnector());
        return tomcat;
    }

    @Bean
    public Connector httpConnector() {
        Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
        connector.setScheme("http");
        connector.setPort(8080);// 表示用8080端口来供http访问
        connector.setSecure(false);
        connector.setRedirectPort(8443);// 自动重定向到8443端口
        return connector;
    }
}

 

以上是关于spring boot接口 支持https的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 一个接口同时支持 form 表单form-datajson 的优雅写法

Spring Boot部署JAR文件瘦身优化经验分享

一张图帮你记忆,Spring Boot 应用在启动阶段执行代码的几种方式

Spring boot:thymeleaf 没有正确渲染片段

Spring Boot启动过程及回调接口汇总

使用Swagger生成Spring Boot REST客户端(支持Feign)(待实践)