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

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

                相关文档推荐

                Lucene Porter Stemmer not public(Lucene Porter Stemmer 未公开)
                How to index pdf, ppt, xl files in lucene (java based or python or php any of these is fine)?(如何在 lucene 中索引 pdf、ppt、xl 文件(基于 java 或 python 或 php 中的任何一个都可以)?)
                KeywordAnalyzer and LowerCaseFilter/LowerCaseTokenizer(KeywordAnalyzer 和 LowerCaseFilter/LowerCaseTokenizer)
                How to search between dates (Hibernate Search)?(如何在日期之间搜索(休眠搜索)?)
                How to get positions from a document term vector in Lucene?(如何从 Lucene 中的文档术语向量中获取位置?)
                Java Lucene 4.5 how to search by case insensitive(Java Lucene 4.5如何按不区分大小写进行搜索)
              • <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>