public interface Context
The interface through which common actions are performed on Servlet requests and responses.
Created by Kevin Sheppard July 12, 2024Type Params | Return Type | Name and description |
---|---|---|
|
public Context |
addHeader(java.lang.String name, java.lang.String value) |
|
public void |
badRequest(java.lang.String message) |
|
public Context |
badRequest() |
|
public java.lang.String |
bodyAsString() |
|
public Context |
contentType(java.lang.String contentType) |
|
public java.lang.String |
contentType() |
|
public void |
created(java.lang.String message) |
|
public Context |
created() |
|
public void |
error(java.lang.String message) |
|
public Context |
error() |
|
public diego.web.Http.MultiMap<Http.FileUpload> |
fileUploads() |
|
public Context |
flash(java.lang.String type, java.lang.String value) |
<T> |
public T |
form(java.lang.Class<T> form, java.lang.Class<?> validationGroups) |
|
public void |
forwardRequestToDispatcher(java.lang.String pathOrServletName) |
<T> |
public T |
get(java.lang.String key) |
|
public java.lang.String |
getCookieValue(java.lang.String name) |
|
public FileUpload |
getFileUpload(java.lang.String name) |
|
public java.lang.String |
getHeader(java.lang.String name) |
|
public boolean |
isMultipart() |
|
public void |
notFound(java.lang.String message) |
|
public Context |
notFound() |
|
public void |
ok(java.lang.String message) |
|
public Context |
ok() |
|
public java.lang.String |
path() |
|
public java.lang.String |
pathParameter(java.lang.String name) |
|
public Context |
put(java.lang.String key, java.lang.Object value) |
|
public diego.web.Http.MultiMap<java.lang.String> |
queryParameters() |
|
public void |
redirect(java.lang.String location, int code) |
|
public void |
redirect(java.lang.String location) |
|
public Context |
removeCookie(java.lang.String name) |
|
public void |
renderJson(java.lang.Object obj) |
|
public void |
renderView(java.lang.String view, java.util.Map<java.lang.String, java.lang.Object> data)
|
|
public void |
renderView(java.lang.String view)
|
|
public jakarta.servlet.http.HttpServletRequest |
request() |
|
public jakarta.servlet.http.HttpServletResponse |
response() |
|
public Route |
route() |
|
public void |
send() |
|
public void |
send(java.lang.String body, java.lang.String contentType) |
|
public void |
send(java.lang.String body) |
|
public void |
sendFile(java.lang.String fileName) Send a file from the project resources. |
|
public void |
sendFile(java.nio.file.Path file) Send a file from disk. |
|
public void |
sendFile(java.io.InputStream inputStream) Send a file to the client using an InputStream |
|
public Context |
setCookie(Cookie cookie) Set a cookie on the client. |
|
public Context |
setCookie(java.lang.String name, java.lang.String value, int maxAge) Set a cookie on the client |
|
public Context |
setCookie(java.lang.String name, java.lang.String value) Set a cookie on the client that will last as long as the browser session |
|
public Context |
setHeader(java.lang.String name, java.lang.String value) Sets a response header. |
|
public Context |
setUser(User user) |
|
public Context |
status(int status) |
|
public void |
unauthorized(java.lang.String message) |
|
public Context |
unauthorized() |
|
public User |
user() |
|
public void |
validationFailed(java.lang.String message) |
|
public Context |
validationFailed() |
Pass the request to another Servlet for handling.
If you give the servlet a name, you have to use the servlet name. If the servlet is mapped via a URL pattern, you have to use a URL path.
Example 1: ctx.forwardRequestToDispatcher("default") will forward a request to the DefaultServlet that serves static files. You cannot use a path pattern like "/public/style.css" here.
Example 2: ctx.forwardRequestToDispatcher("/greet") will forward a request to the Greeting servlet. The ServletContext will use the format of the URL to locate the Greeting servlet. If you named the Servlet "greet" you will have to reference it by its name.
pathOrServletName
- The URL path or the servlet name.
view
- The name of the view file (without extension) relative to the {diego.templates.dir}
directory.data
- The data to include in the template.
view
- The name of the view file (without extension) relative to the {diego.templates.dir}
directory.Send a file from the project resources.
fileName
- The file name relative to diego.resourceBase
Send a file from disk. Using this method will trigger a download automatically unless you explicitly set the Content-Disposition
header
file
- The file to send. Can be anywhere on disk.Send a file to the client using an InputStream
inputStream
- The InputStream from the file Set a cookie on the client. By default, the path is /
. You do not need to URLEncode your values.
cookie
- A cookie to setSet a cookie on the client
name
- The cookie's namevalue
- The cookie's value. This will be URLEncoded by the FrameworkmaxAge
- The max age of the cookie in secondsSet a cookie on the client that will last as long as the browser session
name
- The cookie's namevalue
- The cookie's value. This will be URLEncoded by the FrameworkSets a response header. If the header has been set, the new value replaces it
name
- The header namevalue
- The header value