congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
org.springframework.web.server
Code IndexAdd Tabnine to your IDE (free)

How to use org.springframework.web.server

Best Java code snippets using org.springframework.web.server (Showing top 20 results out of 603)

origin: spring-projects/spring-framework

  @SuppressWarnings("unchecked")
  @Override
  public <T extends Principal> Mono<T> getPrincipal() {
    return (this.principalMono != null ? (Mono<T>) this.principalMono : getDelegate().getPrincipal());
  }
}
origin: spring-projects/spring-framework

@Override
public Mono<MultiValueMap<String, String>> getFormData() {
  return getDelegate().getFormData();
}
origin: spring-projects/spring-framework

@Override
public ApplicationContext getApplicationContext() {
  return getDelegate().getApplicationContext();
}
origin: spring-projects/spring-framework

@Override
public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {
  ServerHttpRequest request = exchange.getRequest();
  if (hasForwardedHeaders(request)) {
    exchange = exchange.mutate().request(apply(request)).build();
  }
  return chain.filter(exchange);
}
origin: spring-projects/spring-framework

  @Override
  public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {
    exchange = exchange.mutate().principal(this.userMono).build();
    return chain.filter(exchange);
  }
}
origin: spring-projects/spring-framework

@Override
public ServerHttpRequest getRequest() {
  return (this.request != null ? this.request : getDelegate().getRequest());
}
origin: spring-projects/spring-framework

@Override
public ServerHttpRequest getRequest() {
  return getDelegate().getRequest();
}
origin: spring-projects/spring-framework

@Override
public ServerHttpResponse getResponse() {
  return (this.response != null ? this.response : getDelegate().getResponse());
}
origin: spring-projects/spring-framework

@Override
public ServerHttpResponse getResponse() {
  return getDelegate().getResponse();
}
origin: spring-projects/spring-framework

@Override
public Map<String, Object> getAttributes() {
  return getDelegate().getAttributes();
}
origin: spring-projects/spring-framework

@Override
public Mono<WebSession> getSession() {
  return getDelegate().getSession();
}
origin: spring-projects/spring-framework

@Override
public <T extends Principal> Mono<T> getPrincipal() {
  return getDelegate().getPrincipal();
}
origin: spring-projects/spring-framework

@Override
public Mono<MultiValueMap<String, Part>> getMultipartData() {
  return getDelegate().getMultipartData();
}
origin: spring-projects/spring-framework

@Override
public boolean checkNotModified(String etag) {
  return getDelegate().checkNotModified(etag);
}
origin: spring-projects/spring-framework

@Override
public String transformUrl(String url) {
  return getDelegate().transformUrl(url);
}
origin: spring-projects/spring-framework

@Override
public String getLogPrefix() {
  return getDelegate().getLogPrefix();
}
origin: spring-projects/spring-framework

@Override
public void addUrlTransformer(Function<String, String> transformer) {
  getDelegate().addUrlTransformer(transformer);
}
origin: spring-projects/spring-framework

@Override
public boolean isNotModified() {
  return getDelegate().isNotModified();
}
origin: spring-projects/spring-framework

@Override
public LocaleContext getLocaleContext() {
  return getDelegate().getLocaleContext();
}
origin: spring-projects/spring-framework

@Override
public boolean checkNotModified(Instant lastModified) {
  return getDelegate().checkNotModified(lastModified);
}
org.springframework.web.server

Most used classes

  • ServerWebExchange
    Contract for an HTTP request-response interaction. Provides access to the HTTP request and response
  • WebHttpHandlerBuilder
    This builder has two purposes:One is to assemble a processing chain that consists of a target WebHan
  • WebFilterChain
    Contract to allow a WebFilter to delegate to the next in the chain.
  • WebSession
    Main contract for using a server-side session that provides access to session attributes across HTTP
  • ResponseStatusException
    Base class for exceptions associated with specific HTTP response status codes.
  • UnsupportedMediaTypeStatusException,
  • AcceptHeaderLocaleContextResolver,
  • DefaultWebSessionManager,
  • WebHandler,
  • DefaultServerWebExchange,
  • FilteringWebHandler,
  • ResponseStatusExceptionHandler,
  • WebFilter,
  • DefaultWebFilterChain,
  • HeaderWebSessionIdResolver,
  • InMemoryWebSessionStore,
  • NotAcceptableStatusException,
  • ForwardedHeaderTransformer,
  • HttpWebHandlerAdapter
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now