Documentation - Javalin 1.X
This page contains documentation for an older version of Javalin. Go to javalin.io/documentation to view documentation for the newest version.
Handlers
Javalin has a three main handler types: before-handlers, endpoint-handlers, and after-handlers. (There are also exception-handlers and error-handlers, but we’ll get to them later). The before-, endpoint- and after-handlers require three parts:
- A verb, ex:
before
,get
,post
,put
,delete
,after
- A path, ex:
/
,/hello-world
- A handler implementation
ctx -> { ... }
The Handler
interface has a void return type, so you have to use ctx.result()
to return data to the user.
Before handlers
Before-handlers are matched before every request (including static files, if you enable those).
- Java
- Kotlin
app.before("/some-path/*", ctx -> {
// runs before all request to /some-path/*
});
app.before(ctx -> {
// calls before("/*", handler)
});
app.before("/some-path/*") { ctx ->
// runs before all request to /some-path/*
}
app.before { ctx ->
// calls before("/*", handler)
}
Endpoint handlers
Endpoint-handlers are matched in the order they are defined.
- Java
- Kotlin
app.get("/", ctx -> {
// some code
ctx.json(object)
});
app.post("/", ctx -> {
// some code
ctx.status(201)
});
app.get("/") { ctx ->
// some code
ctx.json(object)
}
app.post("/") { ctx ->
// some code
ctx.status(201)
}
Handler paths can include path-parameters. These are available via Context.param()
- Java
- Kotlin
get("/hello/:name", ctx -> {
ctx.result("Hello: " + ctx.param("name"));
});
get("/hello/:name") { ctx ->
ctx.result("Hello: " + ctx.param("name"))
}
Handler-paths can also include wildcard parameters (splats). These are available via Context.splat()
- Java
- Kotlin
get("/hello/*/and/*", ctx -> {
ctx.result("Hello: " + ctx.splat(0) + " and " + ctx.splat(1));
});
get("/hello/*/and/*") { ctx ->
ctx.result("Hello: " + ctx.splat(0) + " and " + ctx.splat(1))
}
After handlers
After-handlers run after every request (even if an exception occurred)
- Java
- Kotlin
app.after("/some-path/*", ctx -> {
// runs after all request to /some-path/* (excluding static files)
});
app.after(ctx -> {
// run after every request (excluding static files)
});
app.after("/some-path/*") { ctx ->
// runs after all request to /some-path/* (excluding static files)
}
app.after { ctx ->
// run after every request (excluding static files)
}
Reverse path lookup
You can look up the path for a specific Handler
by calling app.pathFinder(handler)
or app.pathFinder(handler, handlerType)
. If the Handler
is registered on multiple
paths, the first matching path will be returned.
Handler groups
You can group your endpoints by using the routes()
and path()
methods. routes()
creates
a temporary static instance of Javalin so you can skip the app.
prefix before your handlers:
- Java
- Kotlin
app.routes(() -> {
path("users", () -> {
get(UserController::getAllUsers);
post(UserController::createUser);
path(":id", () -> {
get(UserController::getUser);
patch(UserController::updateUser);
delete(UserController::deleteUser);
});
});
});
app.routes {
path("users") {
get(userController::getAllUsers);
post(userController::createUser);
path(":id") {
get(userController::getUser);
patch(userController::updateUser);
delete(userController::deleteUser);
}
}
}
Note that path()
prefixes your paths with /
(if you don’t add it yourself).
This means that path("api", ...)
and path("/api", ...)
are equivalent.
Context
The Context
object provides you with everything you need to handle a http-request.
It contains the underlying servlet-request and servlet-response, and a bunch of getters
and setters. The getters operate mostly on the request-object, while the setters operate exclusively on
the response object.
// request methods:
ctx.request(); // get underlying HttpServletRequest
ctx.anyFormParamNull("k1", "k2"); // returns true if any form-param is null
ctx.anyQueryParamNull("k1", "k2"); // returns true if any query-param is null
ctx.body(); // get the request body as string
ctx.bodyAsBytes(); // get the request body as byte-array
ctx.bodyAsClass(clazz); // convert json body to object
ctx.formParam("key"); // get form param
ctx.formParams("key"); // get form param with multiple values
ctx.formParamMap(); // get all form param key/values as map
ctx.param("key"); // get a path-parameter, ex "/:id" -> param("id")
ctx.paramMap(); // get all param key/values as map
ctx.splat(0); // get splat by nr, ex "/*" -> splat(0)
ctx.splats(); // get array of splat-values
ctx.attribute("key", "value"); // set a request attribute
ctx.attribute("key"); // get a request attribute
ctx.attributeMap(); // get all attribute key/values as map
ctx.basicAuthCredentials() // get username and password used for basic-auth
ctx.contentLength(); // get request content length
ctx.contentType(); // get request content type
ctx.cookie("key"); // get cookie by name
ctx.cookieMap(); // get all cookie key/values as map
ctx.header("key"); // get a header
ctx.headerMap(); // get all header key/values as map
ctx.host(); // get request host
ctx.ip(); // get request up
ctx.isMultipart(); // check if request is multipart
ctx.mapFormParams("k1", "k2"); // map form params to their values, returns null if any form param is missing
ctx.mapQueryParams("k1", "k2"); // map query params to their values, returns null if any query param is missing
ctx.matchedPath(); // get matched path, ex "/path/:param"
ctx.next(); // pass the request to the next handler
ctx.path(); // get request path
ctx.port(); // get request port
ctx.protocol(); // get request protocol
ctx.queryParam("key"); // get query param
ctx.queryParams("key"); // get query param with multiple values
ctx.queryParamMap(); // get all query param key/values as map
ctx.queryString(); // get request query string
ctx.method(); // get request method
ctx.scheme(); // get request scheme
ctx.sessionAttribute("foo", "bar"); // set session-attribute "foo" to "bar"
ctx.sessionAttribute("foo"); // get session-attribute "foo"
ctx.sessionAttributeMap(); // get all session attributes as map
ctx.uploadedFile("key"); // get file from multipart form
ctx.uploadedFiles("key"); // get files from multipart form
ctx.uri(); // get request uri
ctx.url(); // get request url
ctx.userAgent(); // get request user agent
// response methods:
ctx.response(); // get underlying HttpServletResponse
ctx.result("result"); // set result (string)
ctx.result(inputStream); // set result (stream)
ctx.result(future); // set result (future)
ctx.resultString(); // get response result (string)
ctx.resultStream(); // get response result (stream)
ctx.resultFuture(); // get response result (future)
ctx.charset("charset"); // set response character encoding
ctx.header("key", "value"); // set response header
ctx.html("body html"); // set result and html content type
ctx.json(object); // set result with object-as-json
ctx.redirect("/location"); // redirect to location
ctx.redirect("/location", 302); // redirect to location with code
ctx.status(); // get response status
ctx.status(404); // set response status
ctx.cookie("key", "value"); // set cookie with key and value
ctx.cookie("key", "value", 0); // set cookie with key, value, and maxage
ctx.cookie(cookieBuilder); // set cookie using cookiebuilder
ctx.removeCookie("key"); // remove cookie by key
ctx.removeCookie("/path", "key"); // remove cookie by path and key
Cookie Store
The ctx.cookieStore()
functions provide a convenient way for sharing information between handlers, request, or even servers:
ctx.cookieStore(key, value); // store any type of value
ctx.cookieStore(key); // read any type of value
ctx.clearCookieStore(); // clear the cookie-store
The cookieStore works like this:
- The first handler that matches the incoming request will populate the cookie-store-map with the data currently stored in the cookie (if any).
- This map can now be used as a state between handlers on the same request-cycle, pretty much in the same way as
ctx.attribute()
- At the end of the request-cycle, the cookie-store-map is serialized, base64-encoded and written to the response as a cookie. This allows you to share the map between requests and servers (in case you are running multiple servers behind a load-balancer)
Example:
- Java
- Kotlin
serverOneApp.post("/cookie-storer") { ctx ->
ctx.cookieStore("string", "Hello world!");
ctx.cookieStore("i", 42);
ctx.cookieStore("list", Arrays.asList("One", "Two", "Three"));
}
serverTwoApp.get("/cookie-reader") { ctx -> // runs on a different server than serverOneApp
String string = ctx.cookieStore("string")
int i = ctx.cookieStore("i")
List<String> list = ctx.cookieStore("list")
}
serverOneApp.post("/cookie-storer") { ctx ->
ctx.cookieStore("string", "Hello world!")
ctx.cookieStore("i", 42)
ctx.cookieStore("list", listOf("One", "Two", "Three"))
}
serverTwoApp.get("/cookie-reader") { ctx -> // runs on a different server than serverOneApp
val string = ctx.cookieStore<String>("string")
val i = ctx.cookieStore<Int>("i")
val list = ctx.cookieStore<List<String>>("list")
}
Since the client stores the cookie, the get
request to serverTwoApp
will be able to retrieve the information that was passed in the post
to serverOneApp
.
Please note that cookies have a max-size of 4kb.
Context extensions
Context extensions give Java developers a way of extending the Context
object.
One of the most popular features of Kotlin is extension functions.
When working with an object you don’t own in Java, you often end up making MyUtil.action(object, ...)
.
If you, for example, want to serialize an object and set it as the result on the Context
, you might do:
app.get("/", ctx -> MyMapperUtil.serialize(ctx, myMapper, myObject)); // three args, what happens where?
With context extensions you can add custom extensions on the context:
app.get("/", ctx -> ctx.use(MyMapper.class).serialize(object)); // use MyMapper to serialize object
Context extensions have to be added before you can use them, this would typically be done in the first before
filter of your app:
app.before(ctx -> ctx.register(MyMapper.class, new MyMapper(ctx, otherDependency));
Access manager
Javalin has a functional interface AccessManager
, which let’s you
set per-endpoint authentication and/or authorization. It’s common to use before-handlers for this,
but per-endpoint security handlers give you much more explicit and readable code. You can implement your
access-manager however you want, but here is an example implementation:
- Java
- Kotlin
// Set the access-manager that Javalin should use
app.accessManager((handler, ctx, permittedRoles) -> {
MyRole userRole = getUserRole(ctx);
if (permittedRoles.contains(userRole)) {
handler.handle(ctx);
} else {
ctx.status(401).result("Unauthorized");
}
});
Role getUserRole(Context ctx) {
// determine user role based on request
// typically done by inspecting headers
}
enum MyRole implements Role {
ANYONE, ROLE_ONE, ROLE_TWO, ROLE_THREE;
}
app.routes(() -> {
get("/un-secured", ctx -> ctx.result("Hello"), roles(ANYONE));
get("/secured", ctx -> ctx.result("Hello"), roles(ROLE_ONE));
});
// Set the access-manager that Javalin should use
app.accessManager { handler, ctx, permittedRoles ->
val userRole = getUserRole(ctx) // determine user role based on request
if (permittedRoles.contains(userRole)) {
handler.handle(ctx)
} else {
ctx.status(401).result("Unauthorized")
}
}
fun getUserRole(ctx: Context) : Role {
// determine user role based on request
// typically done by inspecting headers
}
internal enum class MyRole : Role {
ANYONE, ROLE_ONE, ROLE_TWO, ROLE_THREE
}
app.routes {
get("/un-secured", { ctx -> ctx.result("Hello")}, roles(MyRole.ANYONE));
get("/secured", { ctx -> ctx.result("Hello")}, roles(MyRole.ROLE_ONE));
}
Exception Mapping
All handlers (before, endpoint, after) can throw Exception
(and any subclass of Exception
)
The app.exception()
method gives you a way of handling these exceptions:
- Java
- Kotlin
app.exception(NullPointerException.class, (e, ctx) -> {
// handle nullpointers here
});
app.exception(Exception.class, (e, ctx) -> {
// handle general exceptions here
// will not trigger if more specific exception-mapper found
});
app.exception(NullPointerException::class.java) { e, ctx ->
// handle nullpointers here
}
app.exception(Exception::class.java) { e, ctx ->
// handle general exceptions here
// will not trigger if more specific exception-mapper found
}
HaltException
Javalin has a HaltException
which is handled before other exceptions. It can be used to short-circuit the request-lifecycle.
If you throw a HaltException
in a before
-handler, no endpoint
-handler will fire.
When throwing a HaltException
you can include a status code, a message, or both:
- Java
- Kotlin
throw new HaltException(); // (status: 200, message: "Execution halted")
throw new HaltException(401); // (status: 401, message: "Execution halted")
throw new HaltException("My message"); // (status: 200, message: "My message")
throw new HaltException(401, "Unauthorized"); // (status: 401, message: "Unauthorized")
throw HaltException() // (status: 200, message: "Execution halted")
throw HaltException(401) // (status: 401, message: "Execution halted")
throw HaltException("My message") // (status: 200, message: "My message")
throw HaltException(401, "Unauthorized") // (status: 401, message: "Unauthorized")
Error Mapping
Error mapping is similar to exception mapping, but it operates on HTTP status codes instead of Exceptions:
- Java
- Kotlin
app.error(404, ctx -> {
ctx.result("Generic 404 message")
});
app.error(404) { ctx ->
ctx.result("Generic 404 message")
}
It can make sense to use them together:
- Java
- Kotlin
app.exception(FileNotFoundException.class, (e, ctx) -> {
ctx.status(404);
}).error(404, ctx -> {
ctx.result("Generic 404 message")
});
app.exception(FileNotFoundException::class.java) { e, ctx ->
ctx.status(404)
}.error(404) { ctx ->
ctx.result("Generic 404 message")
}
WebSockets
Javalin has a very intuitive way of handling WebSockets, similar to most node frameworks:
- Java
- Kotlin
app.ws("/websocket/:path", ws -> {
ws.onConnect(session -> System.out.println("Connected"));
ws.onMessage((session, message) -> {
System.out.println("Received: " + message);
session.getRemote().sendString("Echo: " + message);
});
ws.onClose((session, statusCode, reason) -> System.out.println("Closed"));
ws.onError((session, throwable) -> System.out.println("Errored"));
});
app.ws("/websocket/:path") { ws ->
ws.onConnect { session -> println("Connected") }
ws.onMessage { session, message ->
println("Received: " + message)
session.remote.sendString("Echo: " + message)
}
ws.onClose { session, statusCode, reason -> println("Closed") }
ws.onError { session, throwable -> println("Errored") }
}
WsSession
The WsSession
object wraps Jetty’s Session
and adds the following methods:
session.send("message") // send a message to session remote (the ws client)
session.queryString() // get query-string from upgrade-request
session.queryParam("key") // get query-param from upgrade-request
session.queryParams("key") // get query-params from upgrade-request
session.queryParamMap() // get query-param-map from upgrade-request
session.mapQueryParams("k1", "k2") // map query-params to values (only useful in kotlin)
session.anyQueryParamNull("k1", "k2") // check if any query-param from upgrade-request is null
session.param("key") // get a path-parameter, ex "/:id" -> param("id")
session.paramMap() // get all param key/values as map
session.header("key") // get a header
session.headerMap() // get all header key/values as map
session.host() // get request host
Lifecycle events
Javalin has five lifecycle events: SERVER_STARTING
, SERVER_STARTED
, SERVER_START_FAILED
, SERVER_STOPPING
and SERVER_STOPPED
.
The snippet below shows all of them in action:
- Java
- Kotlin
Javalin app = Javalin.create()
.event(EventType.SERVER_STARTING, e -> { ... })
.event(EventType.SERVER_STARTED, e -> { ... })
.event(EventType.SERVER_START_FAILED, e -> { ... })
.event(EventType.SERVER_STOPPING, e -> { ... })
.event(EventType.SERVER_STOPPED, e -> { ... });
app.start(); // SERVER_STARTING -> (SERVER_STARTED || SERVER_START_FAILED)
app.stop(); // SERVER_STOPPING -> SERVER_STOPPED
val app = Javalin.create()
.event(EventType.SERVER_STARTING, { e -> ... })
.event(EventType.SERVER_STARTED, { e -> ... })
.event(EventType.SERVER_START_FAILED, { e -> ... })
.event(EventType.SERVER_STOPPING, { e -> ... })
.event(EventType.SERVER_STOPPED, { e -> ... });
app.start() // SERVER_STARTING -> (SERVER_STARTED || SERVER_START_FAILED)
app.stop() // SERVER_STOPPING -> SERVER_STOPPED
The lambda takes an Event
object, which contains the type of event that happened,
and a reference to the this
(the javalin object which triggered the event).
Server setup
Javalin runs on an embedded Jetty. The architecture for adding other embedded servers is in place, and pull requests are welcome.
Starting and stopping
To start and stop the server, use the appropriately named start()
and stop
methods.
Javalin app = Javalin.create()
.start() // start server (sync/blocking)
.stop() // stop server (sync/blocking)
Quick-start
If you don’t need any custom configuration, you can use the Javalin.start(port)
method.
Javalin app = Javalin.start(7000);
This creates a new server which listens on the specified port (here, 7000
), and starts it.
Configuration
The following snippet shows all the configuration currently available in Javalin:
- Java
- Kotlin
Javalin.create() // create has to be called first
.contextPath("/context-path") // set a context path (default is "/")
.dontIgnoreTrailingSlashes() // treat '/test' and '/test/' as different URLs
.defaultContentType(string) // set a default content-type for responses
.defaultCharacterEncoding(string) // set a default character-encoding for responses
.disableStartupBanner() // remove the javalin startup banner from logs
.embeddedServer( ... ) // see section below
.enableCorsForOrigin("origin") // enables cors for the specified origin(s)
.enableDynamicGzip() // gzip response (if client accepts gzip and response is more than 1500 bytes)
.enableRouteOverview("/path") // render a HTML page showing all mapped routes
.enableStandardRequestLogging() // does requestLogLevel(LogLevel.STANDARD)
.enableStaticFiles("/public") // enable static files (opt. second param Location.CLASSPATH/Location.EXTERNAL)
.maxBodySizeForRequestCache(long) // set max body size for request cache
.port(port) // set the port
.start(); // start has to be called last
Javalin.create().apply { // create has to be called first
contextPath("/context-path") // set a context path (default is "/")
dontIgnoreTrailingSlashes() // treat '/test' and '/test/' as different URLs
defaultContentType(string) // set a default content-type for responses
defaultCharacterEncoding(string) // set a default character-encoding for responses
disableStartupBanner() // remove the javalin startup banner from logs
embeddedServer( ... ) // see section below
enableCorsForOrigin("origin") // enables cors for the specified origin(s)
enableRouteOverview("/path") // render a HTML page showing all mapped routes
enableDynamicGzip() // gzip response (if client accepts gzip and response is more than 1500 bytes)
enableStandardRequestLogging() // does requestLogLevel(LogLevel.STANDARD)
enableStaticFiles("/public") // enable static files (opt. second param Location.CLASSPATH/Location.EXTERNAL)
maxBodySizeForRequestCache(long) // set max body size for request cache
port(port) // set the port
}.start() // start has to be called last
Any argument to contextPath()
will be normalized to the form /path
(slash, path, no-slash)
Custom server
If you need to customize the embedded server, you can call the app.embeddedServer()
method:
- Java
- Kotlin
app.embeddedServer(new EmbeddedJettyFactory(() -> {
Server server = new Server();
// do whatever you want here
return server;
}));
app.embeddedServer(EmbeddedJettyFactory({
val server = Server()
// do whatever you want here
server
}))
Custom jetty handlers
You can configure your embedded jetty-server with a handler-chain (example), and Javalin will attach it’s own handlers to the end of this chain.
- Java
- Kotlin
StatisticsHandler statisticsHandler = new StatisticsHandler();
Javalin.create()
.embeddedServer(new EmbeddedJettyFactory(() -> {
Server server = new Server();
server.setHandler(statisticsHandler);
return server;
}))
.start();
val statisticsHandler = StatisticsHandler()
Javalin.create().apply {
embeddedServer(EmbeddedJettyFactory({
Server(queuedThreadPool).apply {
handler = statisticsHandler
}
}))
}.start();
SSL/HTTP2
To configure SSL or HTTP2 you need to use a custom server (see previous section).
An example of a custom server with SSL can be found in the examples,
HelloWorldSecure.
A custom HTTP2 server is a bit more work to set up, but we have a repo with a fully functioning example server in both Kotlin and Java: javalin-http2-example
Static Files
You can enabled static file serving by doing app.enableStaticFiles("/classpath-folder")
, and/or
app.enableStaticFiles("/folder", Location.EXTERNAL)
.
Static resource handling is done after endpoint matching,
meaning your self-defined endpoints have higher priority. The process looks like this:
run before-handlers
run endpoint-handlers
if no-endpoint-handler-found
run static-file-handler
if static-file-found
static-file-handler finishes response and
sends to user (response is commited)
else
response is 404, javalin finishes the response
with after-handlers and error-mapping
If you do app.enableStaticFiles("/classpath-folder")
.
Your index.html
file at /classpath-folder/index.html
will be available
at http://{host}:{port}/index.html
and http://{host}:{port}/
.
You can call enableStaticFiles
multiple times to set up multiple handlers.
Caching
Javalin serves static files with the Cache-Control
header set to max-age=0
. This means
that browsers will always ask if the file is still valid. If the version the browser has in cache
is the same as the version on the server, Javalin will respond with a 304 Not modified
status,
and no response body. This tells the browser that it’s okay to keep using the cached version.
If you want to skip this check, you can put files in a dir called immutable
,
and Javalin will set max-age=31622400
, which means that the browser will wait
one year before checking if the file is still valid.
This should only be used for versioned library files, like vue-2.4.2.min.js
, to avoid
the browser ending up with an outdated version if you change the file content.
Jetty WebSockets
Javalin supports native Jetty WebSockets, but these must be declared before starting the server. There are two different ways of using these WebSockets:
Annotated class
You can pass an annotated class to the ws()
function:
app.ws("/websocket", WebSocketClass.class);
Annotation API can be found on Jetty’s docs page
WebSocket object
You can pass any object that fulfills Jetty’s requirements (annotated/implementing WebSocketListener
, etc):
app.ws("/websocket", new WebSocketObject());
FAQ
Frequently asked questions
Javadoc
There is a Javadoc available at javadoc.io. Please contribute to the Javadoc if you can.
Deploying
To deploy Javalin, simply create a jar with dependencies,
then launch the jar with java -jar filename.jar
. That’s it.
Javalin has an embedded server, so you don’t need an application server.
There is also a tutorial on deploying Javalin to Heroku.
Uploads
Uploaded files are easily accessible via ctx.uploadedFiles()
:
- Java
- Kotlin
app.post("/upload", ctx -> {
ctx.uploadedFiles("files").forEach(file -> {
FileUtils.copyInputStreamToFile(file.getContent(), new File("upload/" + file.getName()));
});
});
app.post("/upload") { ctx ->
ctx.uploadedFiles("files").forEach { (contentType, content, name, extension) ->
content.copyTo(File("upload/" + name))
}
}
The corresponding HTML would be something like:
<form method="post" action="/upload" enctype="multipart/form-data">
<input type="file" name="files" multiple>
<button>Submit</button>
</form>
Adding a logger
If you’re reading this, you’ve probably seen the following message while running Javalin:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
This is nothing to worry about.
Like a lot of other Java projects, Javalin does not have a logger included, which means that you have to add your own logger. If you don’t know/care a lot about Java loggers, the easiest way to fix this is to add the following dependency to your project:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.11</version>
</dependency>
This will remove the warning from SLF4J, and enable helpful debug messages while running Javalin.
Asynchronous requests
Javalin 1.6.0 introduced future results. While the default threadpool (200 threads) is enough for most use cases,
sometimes slow operations should be run asynchronously. Luckily it’s very easy in Javalin, just
pass a CompletableFuture
to ctx.result()
:
import io.javalin.Javalin
fun main(args: Array<String>) {
val app = Javalin.start(7000)
app.get("/") { ctx -> ctx.result(getFuture()) }
}
// hopefully your future is less pointless than this:
private fun getFuture() = CompletableFuture<String>().apply {
Executors.newSingleThreadScheduledExecutor().schedule({ this.complete("Hello World!") }, 1, TimeUnit.SECONDS)
}
You can only set future results in endpoint handlers (get/post/put/etc).
After-handlers, exception-handlers and error-handlers run like you’d expect them to after
the future has been resolved or rejected.
Configuring the JSON mapper
The JSON mapper can be configured like this:
Gson gson = new GsonBuilder().create();
JavalinJsonPlugin.setJsonToObjectMapper(gson::fromJson);
JavalinJsonPlugin.setObjectToJsonMapper(gson::toJson);
Configuring Jackson
The JSON mapper uses Jackson by default, which can be configured by calling:
JavalinJacksonPlugin.configure(objectMapper)
Note that these are global settings, and can’t be configured per instance of Javalin.
Views and Templates
Javalin currently supports five template engines, as well as markdown:
- Java
- Kotlin
ctx.renderThymeleaf("/templateFile", model("firstName", "John", "lastName", "Doe"))
ctx.renderVelocity("/templateFile", model("firstName", "John", "lastName", "Doe"))
ctx.renderFreemarker("/templateFile", model("firstName", "John", "lastName", "Doe"))
ctx.renderMustache("/templateFile", model("firstName", "John", "lastName", "Doe"))
ctx.renderJtwig("/templateFile", model("firstName", "John", "lastName", "Doe"))
ctx.renderMarkdown("/markdownFile")
// Javalin looks for templates/markdown files in src/resources
ctx.renderThymeleaf("/templateFile", mapOf("firstName" to "John", "lastName" to "Doe"))
ctx.renderVelocity("/templateFile", mapOf("firstName" to "John", "lastName" to "Doe"))
ctx.renderFreemarker("/templateFile", mapOf("firstName" to "John", "lastName" to "Doe"))
ctx.renderMustache("/templateFile", mapOf("firstName" to "John", "lastName" to "Doe"))
ctx.renderJtwig("/templateFile", mapOf("firstName" to "John", "lastName" to "Doe"))
ctx.renderMarkdown("/markdownFile")
// Javalin looks for templates/markdown files in src/resources
Configure:
JavalinThymeleafPlugin.configure(templateEngine)
JavalinVelocityPlugin.configure(velocityEngine)
JavalinFreemarkerPlugin.configure(configuration)
JavalinMustachePlugin.configure(mustacheFactory)
JavalinJtwigPlugin.configure(configuration)
JavalinCommonmarkPlugin.configure(htmlRenderer, markdownParser)
Note that these are global settings, and can’t be configured per instance of Javalin.
TimeoutExceptions and ClosedChannelExceptions
So, you’re seeing TimeoutExceptions
and ClosedChannelExceptions
in your DEBUG logs?
There is nothing to worry about, typically a browser will keep the HTTP connection open until the
server terminates it. When this happens is decided by the server’s idleTimeout
setting,
which is 30 seconds by default in Jetty/Javalin. This is not a bug.