spring package-info 源码

  • 2022-08-08
  • 浏览 (337)

spring package-info 代码

文件路径:/spring-web/src/main/java/org/springframework/web/accept/package-info.java

/**
 * This package contains classes used to determine the requested the media types in a request.
 *
 * <p>{@link org.springframework.web.accept.ContentNegotiationStrategy} is the main
 * abstraction for determining requested {@linkplain org.springframework.http.MediaType media types}
 * with implementations based on
 * {@linkplain org.springframework.web.accept.PathExtensionContentNegotiationStrategy path extensions}, a
 * {@linkplain org.springframework.web.accept.ParameterContentNegotiationStrategy a request parameter}, the
 * {@linkplain org.springframework.web.accept.HeaderContentNegotiationStrategy 'Accept' header}, or a
 * {@linkplain org.springframework.web.accept.FixedContentNegotiationStrategy default content type}.
 *
 * <p>{@link org.springframework.web.accept.ContentNegotiationManager} is used to delegate to one
 * ore more of the above strategies in a specific order.
 */
@NonNullApi
@NonNullFields
package org.springframework.web.accept;

import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;

相关信息

spring 源码目录

相关文章

spring AbstractMappingContentNegotiationStrategy 源码

spring ContentNegotiationManager 源码

spring ContentNegotiationManagerFactoryBean 源码

spring ContentNegotiationStrategy 源码

spring FixedContentNegotiationStrategy 源码

spring HeaderContentNegotiationStrategy 源码

spring MappingMediaTypeFileExtensionResolver 源码

spring MediaTypeFileExtensionResolver 源码

spring ParameterContentNegotiationStrategy 源码

spring PathExtensionContentNegotiationStrategy 源码

0  赞