Fork me on GitHub

A lightweight REST API library

Javalin is a true microframework with only one required dependency: SLF4J (logging). By default Javalin also depends on Jetty, but you can exclude if you want to use a different Webserver (like Tomcat, etc). Javalin also has plugins for JSON mapping, template rendering, and OpenAPI (Swagger), but they’re optional dependencies that you have to add manually. See the plugins page for more information.

Download Javalin

<dependency>
    <groupId>io.javalin</groupId>
    <artifactId>javalin</artifactId>
    <version>6.1.3</version>
</dependency>

Not familiar with Maven? Read our Maven tutorial.

implementation("io.javalin:javalin:6.1.3")

Not familiar with Gradle? Read our Gradle tutorial.

libraryDependencies += "io.javalin" % "javalin" % "6.1.3"
@Grab(group='io.javalin', module='javalin', version='6.1.3')
[io.javalin/javalin "6.1.3"]
'io.javalin:javalin:jar:6.1.3'
<dependency org="io.javalin" name="javalin" rev="6.1.3" />

If you want Javalin with testing tools, Jackson and Logback, you can use the artifact id javalin-bundle instead of javalin.

Javalin modules

You can see a list of all available modules on https://search.maven.org/search?q=g:io.javalin

Manual downloads

You can get prebuilt jars from Maven Central.
You can get the source on GitHub, or download it as a zip.

Like Javalin?
Star us 😊

×