Framework-less REST API in Java

marcin piczkowski
Marcin Piczkowski
Published in
6 min readDec 29, 2018
Photo by Hieu Vu Minh on Unsplash

Java ecosystem is packed with frameworks and libraries.
For sure not as many as in JavaScript world and they don't get old as quickly too but still this fact causes that I dare to think that we've already forgotten how to create a completely framework-less applications.

You may say: Spring is a standard, why to re-invent a wheel. Spark is a nice small REST framework. Light-rest-4jis yet another.

I tell you, sure, you're right.

You get a lot of bells and whistles with a framework, but you also get a lot of magic, learning overhead, additional features which you'll most likely not use and bugs as well. The more external code is there in your service the bigger chance that its developers have made some mistakes.

Open source community is active and there's a great chance that these bugs in the framework will be fixed soon, but still I'd like to encourage you to re-think if you really need a framework.

If you're doing a small service or a console application maybe you can live without it.

What you could gain (or loose) by sticking to pure java code? Think of these:

  • your code could be much cleaner and predictable (or a complete mess if you're a bad coder)
  • you'd have more control over your code, you won't be constrained by a framework (but you'd have to often write own code for what framework gives you out of the box)
  • your application would deploy and start much quicker, because the framework code does not need to initialise dozen of classes (or not start at all, if you messed up the stuff, e.g. multi-threading)
  • if you deploy your app on Docker, your images could be much slimmer because your jar would be slimmer too

I did a little experiment and tried developing a framework-less REST API.
I thought it could be interesting from learning perspective and a bit refreshing.
When I started building this I often came across situations when I missed some features which Spring provides out of the box.
At that times, instead of enabling another Spring capability, I had to rethink it and develop it myself.
It occurred that for real business case I would probably still prefer to use Spring instead of reinventing a wheel.

Still, I believe the exercise was a pretty interesting experience.

Beginning

I will go through this exercise step by step but not always paste a complete code here. You can always check out each step from a separate branch of the git repository.

First, create a fresh Maven project with an initial pom.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.consulner.httpserver</groupId>
<artifactId>pure-java-rest-api</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<java.version>11</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>

<dependencies></dependencies>

Include java.xml.bind module dependency because those modules were removed in JDK 11 by JEP-320.

<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.4.0-b180608.0325</version>
</dependency>

and Jackson for JSON serialisation

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.7</version>
</dependency>

Then we will use Lombok to simplify POJO classes:

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.0</version>
<scope>provided</scope>
</dependency>

and vavr for functional programming facilities

<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
<version>0.9.2</version>
</dependency>

I started from empty Application main class.
You can get an initial code from step-1 branch.

First endpoint

The starting point of the web application iscom.sun.net.httpserver.HttpServer class. The simplest /api/hello endpoint could look as below:

When you run main program it will start web server at port 8000 and expose out first endpoint which is only printing Hello!, e.g. using curl:

curl localhost:8000/api/hello

Try it out yourself from step-2 branch.

Support different HTTP methods

Our first endpoint works like a charm but you will notice that no matter which HTTP method you'll use it will respond the same.
E.g.:

curl -X POST localhost:8000/api/hello
curl -X PUT localhost:8000/api/hello

The first gotcha when building the API ourselves without a framework is that we need to add our own code to distinguish the methods, e.g.:

Now, try again this request:

curl -v -X POST localhost:8000/api/hello

and the response would be like:

> POST /api/hello HTTP/1.1
> Host: localhost:8000
> User-Agent: curl/7.61.0
> Accept: */*
>
< HTTP/1.1 405 Method Not Allowed

There are also a few things to remember, like to flush output or close exchange every time we return from the api.
When I used Spring I even did not have to think about it.

Try this part from step-3 branch.

Parsing request params

Parsing request params is another "feature" which we'll need to implement ourselves in contrary to utilising a framework.
Let's say we would like our hello api to respond with a name passed as a param, e.g.:

curl localhost:8000/api/hello?name=Marcin

Hello Marcin!

We could parse params with a method like:

and use it as below:

You can find complete example instep-4 branch.

Similarly if we wanted to use path params, e.g.:

curl localhost:8000/api/items/1

to get item by id=1, we would need to parse the path ourselves to extract an id from it. This is getting cumbersome.

Secure endpoint

A common case in each REST API is to protect some endpoints with credentials, e.g. using basic authentication.
For each server context we can set an authenticator as below:

The "myrealm" in BasicAuthenticator constructor is a realm name. Realm is a virtual name which can be used to separate different authentication spaces.
You can read more about it in RFC 1945

You can now invoke this protected endpoint by adding an Authorization header like that:

curl -v localhost:8000/api/hello?name=Marcin -H 'Authorization: Basic YWRtaW46YWRtaW4='

The text after Basic is a Base64 encoded text admin:admin which are credentials hardcoded in our example code.
In real application to authenticate a user you would probably get credentials from the header and compare with username and password stored in database.
If you skip the header the API will respond with status

HTTP/1.1 401 Unauthorized

Check out the complete code from step-5 branch.

JSON, exception handlers and others

Now it's time for more complex example.

From my past experience in software development the most common API which I was developing was exchanging JSON.

We're going to develop an API to register new users. We will use an in-memory database to store them.

Our user domain object will be simple:

I'm using Lombok annotations to save me from constructor and getters boilerplate code, it will be generated in build time.
In REST API I want to pass only login and password so I created a separate domain object:

Users will be created in a service which I will use in my API handler. The service method is simply storing the user.

In complete application it could do more, like send events after successful user registration.

Our in-memory implementation of repository is as follows:

Finally, let's glue all together in handler:

It translates JSON request into RegistrationRequest object:

which I later map to domain object NewUser to finally save it in database and write response as JSON.
I need to translate RegistrationResponse object back to JSON string.
Marshalling and unmarshalling JSON is done with Jackson object mapper (com.fasterxml.jackson.databind.ObjectMapper).
This is how I instantiate the new handler in application main method:

You can find the working example in step-6 git branch, where I also added a global exception handler which is used by the API to respond with a standard JSON error message in case, e.g. when HTTP method is not supported or API request is malformed.

You can run the application and try one of the example requests below:

  • correct response example
curl -X POST localhost:8000/api/users/register -d '{"login": "test" , "password" : "test"}'

response:

{"id":"395eab24-1fdd-41ae-b47e-302591e6127e"}
  • error response example
curl -v -X POST localhost:8000/api/users/register -d '{"wrong": "request"}'

response:

< HTTP/1.1 400 Bad Request
< Date: Sat, 29 Dec 2018 00:11:21 GMT
< Transfer-encoding: chunked
< Content-type: application/json
<
* Connection #0 to host localhost left intact
{"code":400,"message":"Unrecognized field \"wrong\" (class com.consulner.app.api.user.RegistrationRequest), not marked as ignorable (2 known properties: \"login\", \"password\"])\n at [Source: (sun.net.httpserver.FixedLengthInputStream); line: 1, column: 21] (through reference chain: com.consulner.app.api.user.RegistrationRequest[\"wrong\"])"}

Also, by chance I encountered a project java-expresswhich is a Java counterpart of Node.js Express framework and is using jdk.httpserver as well, so all the concepts covered in this article you can find there in real-life application framework :) which is also small enough to digest the codes quickly.

--

--