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?

      时间:2023-06-27

            • <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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:RESTful webservice:如何在 java 中设置标头以接受 Access-Control-Allow-Or 下一篇:使用 Spring Security 进行跨域资源共享

                相关文章

              • <legend id='uyzcd'><style id='uyzcd'><dir id='uyzcd'><q id='uyzcd'></q></dir></style></legend>

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

                  <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>