美文网首页程序员
spring boot 2.0配置同时支持http和https(

spring boot 2.0配置同时支持http和https(

作者: 624c95384278 | 来源:发表于2018-03-27 19:51 被阅读0次

    今天将旧项目从ssm迁移到spring boot时需要同时支持http和https,但是网上的方法都是使用EmbeddedServletContainerFactory这个类来配置,而我使用的2.0版本的spring boot里根本没有这个类,通过查阅官方文档发现配置类更名了

    官方说明

    上面讲述了ssl证书的配置方法,网上很多不再赘述,下面那段话的意思就是说spring boot在配置文件里没办法配置同时支持俩个端口,想要实现的话只能是一个配置一个通过编码实现,http的编码原比https简单所以他推介编码实现http。
    他还提供了一个官方的配置示例项目,项目地址:https://github.com/spring-projects/spring-boot/tree/v2.0.0.RELEASE/spring-boot-samples/spring-boot-sample-tomcat-multi-connectors
    和以前一样直接看他的启动类:

    官方启动类
    原来的EmbeddedServletContainerFactory变成了TomcatServletWebServerFactory
    其实直接抄他的改个端口就好。

    相关文章

      网友评论

        本文标题:spring boot 2.0配置同时支持http和https(

        本文链接:https://www.haomeiwen.com/subject/mmnscftx.html