如何在 Jboss 或 Tomcat 上部署 Spring Cloud Gateway 2.1?
How to deploy Spring Cloud Gateway 2.1 on Jboss or Tomcat?
我想部署 Spring Cloud Gateway,但它是基于 Spring Framework 5,Project Reactor 构建的。
我可以创建一个 WAR 文件并将其部署在传统应用程序服务器上,例如 Jboss 或 Tomcat.
this page 中的 Spring 文档说这是可能的。
Spring WebFlux is supported on Tomcat, Jetty, Servlet 3.1+ containers
注意:
这是 Spring 云网关项目 link
https://spring.io/projects/spring-cloud-gateway
我认为这是不可能的,因为 Spring Cloud Gateway 本身就是一个 Spring Boot WebFlux 应用程序,并且此用例仅受嵌入式服务器支持,as mentioned in the Spring Boot reference documentation。
我想部署 Spring Cloud Gateway,但它是基于 Spring Framework 5,Project Reactor 构建的。
我可以创建一个 WAR 文件并将其部署在传统应用程序服务器上,例如 Jboss 或 Tomcat.
this page 中的 Spring 文档说这是可能的。
Spring WebFlux is supported on Tomcat, Jetty, Servlet 3.1+ containers
注意: 这是 Spring 云网关项目 link https://spring.io/projects/spring-cloud-gateway
我认为这是不可能的,因为 Spring Cloud Gateway 本身就是一个 Spring Boot WebFlux 应用程序,并且此用例仅受嵌入式服务器支持,as mentioned in the Spring Boot reference documentation。