Browse Source
Introduce adapter and handler sub-packages under web.server following a review prompted by the addition of the session package and the package cycle it brought in based on dependency on session.WebSessionManager.pull/1111/head
21 changed files with 73 additions and 31 deletions
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
/** |
||||
* Implementation support to adapt |
||||
* {@link org.springframework.web.server Spring web server} to the underlying |
||||
* {@link org.springframework.http.server.reactive HTTP server} layer. |
||||
*/ |
||||
package org.springframework.web.server.adapter; |
||||
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
/** |
||||
* Provides WebHandler implementations. |
||||
*/ |
||||
package org.springframework.web.server.handler; |
||||
@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
|
||||
/** |
||||
* Support for a user session. |
||||
* Web session support. |
||||
*/ |
||||
package org.springframework.web.server.session; |
||||
|
||||
Loading…
Reference in new issue