小编典典

在Spring Boot Embedded Underwow上将http重定向到https

spring-boot

我正在使用SpringBoot(1.2.3)和嵌入式underwow。出于安全原因,我希望将任何http请求重定向到https,但是我找不到执行此操作的示例。

这是spring boot和tomcat的示例: Spring boot-嵌入式TomcatHTTP到HTTPS重定向

有没有人有解决方案来解决这个问题?


阅读 300

收藏
2020-05-30

共1个答案

小编典典

您可以将Spring-Security添加到项目中,然后将Spring-Security配置为强制执行https。您可以在JavaDoc中找到一个小例子

org.springframework.security.config.annotation.web.builders.HttpSecurity#requiresChannel()
2020-05-30