In short: is it possible to reload static resources using akka-http?
A bit more:
App
object to launch my Main
class. 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.
Two options:
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.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).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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With