Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Static resource reload with akka-http

In short: is it possible to reload static resources using akka-http?

A bit more:

  • I have Scala project.
  • I'm using App object to launch my Main class.
  • I'm using getFromResourceDirectory to locate my resource folder.

What I would like to have is to hot-swap my static resources during development. For example, I have index.html or application.js, which I change and I want to see changes after I refresh my browser without restarting my server. What is the best practise of doing such thing?

I know that Play! allows that, but don't want to base my project on Play! only because of that.

like image 974
psisoyev Avatar asked Jul 22 '16 10:07

psisoyev


2 Answers

Two options:

  1. Easiest: use the getFromDirectory directive instead when running locally and point it to the path where your files you want to 'hotload' are, it serves them directly from the file system, so every time you change a file and load it through Akka HTTP it will be the latest version.
  2. getFromResourceDirectory loads files from the classpath, the resources are available because SBT copies them into the class directory under target every time you build (copyResources). You could configure sbt using unmanagedClasspath to make it include the static resource directory in the classpath. If you want to package the resources in the artifact when running package however this would require some more sbt-trixery (if you just put src/resources in unmanagedClasspath it will depend on classpath ordering if the copied ones or the modified ones are used).
like image 60
johanandren Avatar answered Nov 08 '22 22:11

johanandren


I couldn't get it to work by adding to unmanagedClasspath so I instead used getFromDirectory. You can use getFromDirectory as a fallback if getFromResourceDirectory fails like this.

val route =
  pathSingleSlash {
    getFromResource("static/index.html") ~
    getFromFile("../website/static/index.html")
  } ~
  getFromResourceDirectory("static") ~
  getFromDirectory("../website/static")

First it tries to look up the file in the static resource directory and if that fails, then checks if ../website/static has the file.

like image 3
daz Avatar answered Nov 08 '22 23:11

daz