diff --git a/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt b/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt index 9f7bc9df94d..5ff3ecae1ce 100644 --- a/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt +++ b/spring-web/src/main/kotlin/org/springframework/web/server/CoWebFilter.kt @@ -53,6 +53,11 @@ abstract class CoWebFilter : WebFilter { companion object { + /** + * Name of the [ServerWebExchange] attribute that contains the + * [kotlin.coroutines.CoroutineContext] to be passed to the + * [org.springframework.web.reactive.result.method.InvocableHandlerMethod]. + */ @JvmField val COROUTINE_CONTEXT_ATTRIBUTE = CoWebFilter::class.java.getName() + ".context" }