Я пытаюсь сделать следующее на основе scalatra-sbt.g8:
class FooWeb extends ScalatraServlet with ScalateSupport {
beforeAll { contentType = "text/html" }
get("/") {
templateEngine.layout("/WEB-INF/scalate/templates/hello-scalate.jade")
}
}
, но получаю следующее исключение (даже если файл существует) - есть какие-нибудь подсказки?
Could not load resource: [/WEB-INF/scalate/templates/hello-scalate.jade]; are you sure it's within [null]?
org.fusesource.scalate.util.ResourceNotFoundException: Could not load resource: [/WEB-INF/scalate/templates/hello-scalate.jade]; are you sure it's within [null]?
FWIW, самое внутреннее исключение исходит из org.mortbay.jetty.handler.ContextHandler.getResource
строка 1142: _baseResource==null
.