Quick Start
Note: To run examples, please make sure that the flag -Ypartial-unification
is enabled in your compiler options (i.e scalacOptions += "-Ypartial-unification"
in sbt).
This is enabled by default in the giter8 template.
Getting started with http4s is easy. Let’s materialize an http4s
skeleton project from its giter8 template:
$ sbt -sbt-version 1.2.8 new http4s/http4s.g8 -b 0.20
Follow the prompts. For every step along the way, a default value is
provided in brackets.
name
- name of your project.
organization
- the organization you publish under. It’s common practice on the JVM
to make this a domain you own, in reverse order (i.e., TLD first).
io.github.username
is also a fine choice.
package
- by default, your organization followed by the project name.
sbt_version
- the version of SBT for your generated project.
scala_version
- the version of Scala for your generated project.
http4s_version
- defaults to the latest stable release of http4s. See
the versions page for other suggestions.
logback_version
- the version of Logback for logging in your generated project.
At the end of the process, you’ll see:
Template applied in ./quickstart
In addition to sbt build machinery, some Scala source files are
generated:
$ cd quickstart
$ find src/main -name '*.scala'
./src/main/scala/com/example/http4squickstart/HelloWorldServer.scala
./src/main/scala/com/example/http4squickstart/HelloWorldService.scala
HelloWorldServer.scala
defines a runnable object HelloWorldServer extends StreamApp[IO]
overriding the stream(args: List[String],
requestShutdown: IO[Unit])
method which acts as the entry point to your application by
starting blaze, http4s’ native server backend.
HelloWorldService
defines a service
value containing a simple HttpService
that responds to GET
/hello/$USERNAME
with a JSON greeting. Let’s try it:
$ sbt run
Depending on the state of your Ivy cache, several dependencies will
download. This is a good time to grab a beverage. When you come
back, you should see a line similar to this:
264 [run-main-0] INFO org.http4s.blaze.channel.nio1.NIO1SocketServerGroup - Service bound to address /127.0.0.1:8080
This indicates that blaze is running our service on port 8080. Let’s try out the
hello world service with curl:
$ curl -i http://localhost:8080/hello/world
HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8
Date: Thu, 01 Dec 2016 05:05:24 GMT
Content-Length: 26
{"message":"Hello, world"}
To shut down your server, simply press ^C
in your console. Note that
when running interactive SBT, ^C
will kill the SBT process. For rapid
application development, you may wish to add the sbt-revolver plugin
to your project and starting the server from the SBT prompt with reStart
.
With just a few commands, we have a fully functional app for creating
a simple JSON service.