Skip to content

Instantly share code, notes, and snippets.

@VincentGijsen
VincentGijsen / StaticFileServlet.scala
Last active January 5, 2017 12:21 — forked from laurilehmijoki/StaticFileServlet.scala
Static file servlet with Scalatra
package coolcode
import java.io.File
import java.util.Properties
import org.scalatra.ScalatraServlet
class StaticFileServlet extends ScalatraServlet {
get("/*") {
val resourcePath = "/WEB-INF" + getResourcePath