Service
This tutorial will walk you through creating your first http4s service and calling it with http4s’ client.
Create a new directory, with the following build.sbt in the root:
scalaVersion := "2.11.8" // Also supports 2.10.x
val http4sVersion = "0.15.16a"
// Only necessary for SNAPSHOT releases
resolvers += Resolver.sonatypeRepo("snapshots")
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion
)
This tutorial is compiled as part of the build using tut. Each page is its own REPL session. If you copy and paste code samples starting from the top, you should be able to follow along in a REPL.
$ sbt console
Your first service
An HttpService is a simple alias for
Kleisli[Task, Request, Response]. If that’s meaningful to you,
great. If not, don’t panic: Kleisli is just a convenient wrapper
around a Request => Task[Response], and Task is an asynchronous
operation. We’ll teach you what you need to know as we go, or you
can, uh, fork a task to read these introductions first:
Defining your service
Wherever you are in your studies, let’s create our first
HttpService. Start by pasting these imports into your SBT console:
import org.http4s._, org.http4s.dsl._
// import org.http4s._
// import org.http4s.dsl._
Using the http4s-dsl, we can construct an HttpService by pattern
matching the request. Let’s build a service that matches requests to
GET /hello/:name, where :name is a path parameter for the person to
greet.
val helloWorldService = HttpService {
case GET -> Root / "hello" / name =>
Ok(s"Hello, $name.")
}
// helloWorldService: org.http4s.HttpService = Kleisli(org.http4s.package$HttpService$$$Lambda$25412/154909740@3789771)
Returning content in the response
In order to return content of type T in the response an EntityEncoder[T]
must be used. We can define the EntityEncoder[T] implictly so that it
doesn’t need to be explicitly included when serving the response.
In the example below, we’re defining a tweetEncoder and then
explicitly using it to encode the response contents of a Tweet, which can
be seen as Ok(getTweet(tweetId))(tweetEncoder).
We’ve defined tweetsEncoder as being implicit so that we don’t need to explicitly
reference it when serving the response, which can be seen as
Ok(getPopularTweets()).
import scalaz.concurrent.Task
// import scalaz.concurrent.Task
case class Tweet(id: Int, message: String)
// defined class Tweet
def tweetEncoder: EntityEncoder[Tweet] = ???
// tweetEncoder: org.http4s.EntityEncoder[Tweet]
implicit def tweetsEncoder: EntityEncoder[Seq[Tweet]] = ???
// tweetsEncoder: org.http4s.EntityEncoder[Seq[Tweet]]
def getTweet(tweetId: Int): Task[Tweet] = ???
// getTweet: (tweetId: Int)scalaz.concurrent.Task[Tweet]
def getPopularTweets(): Task[Seq[Tweet]] = ???
// getPopularTweets: ()scalaz.concurrent.Task[Seq[Tweet]]
val tweetService = HttpService {
case request @ GET -> Root / "tweets" / "popular" =>
Ok(getPopularTweets())
case request @ GET -> Root / "tweets" / IntVar(tweetId) =>
getTweet(tweetId).flatMap(Ok(_)(tweetEncoder))
}
// tweetService: org.http4s.HttpService = Kleisli(org.http4s.package$HttpService$$$Lambda$25412/154909740@134cc7a9)
Running your service
http4s supports multiple server backends. In this example, we’ll use blaze, the native backend supported by http4s.
We start from a BlazeBuilder, and then mount the helloWorldService under
the base path of / and the remainder of the services under the base
path of /api. The services can be mounted in any order as the request will be
matched against the longest base paths first. The BlazeBuilder is immutable
with chained methods, each returning a new builder.
Multiple HttpServices can be chained together with the orElse method by
importing org.http4s.server.syntax._.
import org.http4s.server.blaze._
// import org.http4s.server.blaze._
import org.http4s.server.syntax._
// import org.http4s.server.syntax._
val services = tweetService orElse helloWorldService
// services: org.http4s.Service[org.http4s.Request,org.http4s.Response] = Kleisli(scalaz.Kleisli$$Lambda$25418/1572734870@455a1a86)
val builder = BlazeBuilder.bindHttp(8080, "localhost").mountService(helloWorldService, "/").mountService(services, "/api")
// builder: org.http4s.server.blaze.BlazeBuilder = org.http4s.server.blaze.BlazeBuilder@12183f36
The bindHttp call isn’t strictly necessary as the server will be set to run
using defaults of port 8080 and the loopback address. The mountService call
associates a base path with a HttpService.
A builder can be run to start the server.
val server = builder.run
// server: org.http4s.server.Server = BlazeServer(/127.0.0.1:8080)
Running your service as an App
To run a server as an App simply extend
org.http4s.server.ServerApp and implement the server method. The server
will be shutdown automatically when the program exits via a shutdown hook,
so you don’t need to clean up any resources explicitly.
import org.http4s.server.{Server, ServerApp}
// import org.http4s.server.{Server, ServerApp}
import org.http4s.server.blaze._
// import org.http4s.server.blaze._
object Main extends ServerApp {
override def server(args: List[String]): Task[Server] = {
BlazeBuilder
.bindHttp(8080, "localhost")
.mountService(services, "/api")
.start
}
}
// defined object Main
Cleaning up
Our server consumes system resources. Let’s clean up after ourselves by shutting it down:
server.shutdownNow()