类 CorsRegistry

java.lang.Object
cn.taketoday.web.config.CorsRegistry

public class CorsRegistry extends Object
Assists with the registration of global, URL pattern based CorsConfiguration mappings.
从以下版本开始:
4.0 2022/2/15 17:27
作者:
Sebastien Deleuze, Rossen Stoyanchev, Harry Yang
另请参阅:
  • 字段详细资料

  • 构造器详细资料

    • CorsRegistry

      public CorsRegistry()
  • 方法详细资料

    • addMapping

      public CorsRegistration addMapping(String pathPattern)
      Enable cross-origin request handling for the specified path pattern.

      Exact path mapping URIs (such as "/admin") are supported as well as Ant-style path patterns (such as "/admin/**").

      By default, the CorsConfiguration for this mapping is initialized with default values as described in CorsConfiguration.applyPermitDefaultValues().

    • getCorsConfigurations

      protected Map<String,CorsConfiguration> getCorsConfigurations()
      Return the registered CorsConfiguration objects, keyed by path pattern.