1. <legend id='yXfxb'><style id='yXfxb'><dir id='yXfxb'><q id='yXfxb'></q></dir></style></legend>

    <small id='yXfxb'></small><noframes id='yXfxb'>

      • <bdo id='yXfxb'></bdo><ul id='yXfxb'></ul>

      <i id='yXfxb'><tr id='yXfxb'><dt id='yXfxb'><q id='yXfxb'><span id='yXfxb'><b id='yXfxb'><form id='yXfxb'><ins id='yXfxb'></ins><ul id='yXfxb'></ul><sub id='yXfxb'></sub></form><legend id='yXfxb'></legend><bdo id='yXfxb'><pre id='yXfxb'><center id='yXfxb'></center></pre></bdo></b><th id='yXfxb'></th></span></q></dt></tr></i><div id='yXfxb'><tfoot id='yXfxb'></tfoot><dl id='yXfxb'><fieldset id='yXfxb'></fieldset></dl></div>
      <tfoot id='yXfxb'></tfoot>

      在 Spring 5 Webflux 中启用 CORS?

      Enable CORS in Spring 5 Webflux?(在 Spring 5 Webflux 中启用 CORS?)

            • <bdo id='70DKA'></bdo><ul id='70DKA'></ul>
              <tfoot id='70DKA'></tfoot>
              • <i id='70DKA'><tr id='70DKA'><dt id='70DKA'><q id='70DKA'><span id='70DKA'><b id='70DKA'><form id='70DKA'><ins id='70DKA'></ins><ul id='70DKA'></ul><sub id='70DKA'></sub></form><legend id='70DKA'></legend><bdo id='70DKA'><pre id='70DKA'><center id='70DKA'></center></pre></bdo></b><th id='70DKA'></th></span></q></dt></tr></i><div id='70DKA'><tfoot id='70DKA'></tfoot><dl id='70DKA'><fieldset id='70DKA'></fieldset></dl></div>

                <small id='70DKA'></small><noframes id='70DKA'>

                <legend id='70DKA'><style id='70DKA'><dir id='70DKA'><q id='70DKA'></q></dir></style></legend>

                  <tbody id='70DKA'></tbody>
                本文介绍了在 Spring 5 Webflux 中启用 CORS?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何在 Spring 5 Webflux 项目中启用 CORS?

                How to enable CORS in a Spring 5 Webflux Project?

                我找不到任何合适的文档.

                I cannot find any proper documentation.

                推荐答案

                这是另一个使用 Webflux 配置器的解决方案.

                Here is another solution with the Webflux Configurer.

                旁注:它的 Kotlin 代码(从我的项目中复制)但您可以轻松地将其转换为 Java 代码.

                Side Note: Its Kotlin Code (copied from my project) but you can easily translate that to Java Code.

                @Configuration
                @EnableWebFlux
                class WebConfig: WebFluxConfigurer
                {
                    override fun addCorsMappings(registry: CorsRegistry)
                    {
                        registry.addMapping("/**")
                            .allowedOrigins("*") // any host or put domain(s) here
                            .allowedMethods("GET, POST") // put the http verbs you want allow
                            .allowedHeaders("Authorization") // put the http headers you want allow
                    }
                }
                

                这篇关于在 Spring 5 Webflux 中启用 CORS?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
                How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
                Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
                Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
                How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
                How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)
              • <legend id='uyzcd'><style id='uyzcd'><dir id='uyzcd'><q id='uyzcd'></q></dir></style></legend>

                  • <bdo id='uyzcd'></bdo><ul id='uyzcd'></ul>

                        <tbody id='uyzcd'></tbody>

                      <small id='uyzcd'></small><noframes id='uyzcd'>

                          <i id='uyzcd'><tr id='uyzcd'><dt id='uyzcd'><q id='uyzcd'><span id='uyzcd'><b id='uyzcd'><form id='uyzcd'><ins id='uyzcd'></ins><ul id='uyzcd'></ul><sub id='uyzcd'></sub></form><legend id='uyzcd'></legend><bdo id='uyzcd'><pre id='uyzcd'><center id='uyzcd'></center></pre></bdo></b><th id='uyzcd'></th></span></q></dt></tr></i><div id='uyzcd'><tfoot id='uyzcd'></tfoot><dl id='uyzcd'><fieldset id='uyzcd'></fieldset></dl></div>
                          <tfoot id='uyzcd'></tfoot>