Without servlet API, we will need a middleware to extract cookie from http header `Set-Cookie` and provide a data structure for user to consume cookies. The API could be like: ```java Cookie cookie = Cookie.extension(request).get("somecookie") ```
Without servlet API, we will need a middleware to extract cookie from http header
Set-Cookieand provide a data structure for user to consume cookies.The API could be like: