4
我試圖在基於Scalatra的-sbt.g8如下:Scalate的ResourceNotFoundException在Scalatra的
class FooWeb extends ScalatraServlet with ScalateSupport {
beforeAll { contentType = "text/html" }
get("/") {
templateEngine.layout("/WEB-INF/scalate/templates/hello-scalate.jade")
}
}
,但我發現以下異常(即使該文件存在) - 任何線索? _baseResource==null
:
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的到來。