Scala Lift - 在linux上找不到类路径

时间:2012-03-02 15:43:58

标签: scala lift

我有以下文件夹:

resources/toServe/presentation

我存储上传的图像和文件的地方,在我的本地Windows开发机器上显示图像时一切正常,我可以这样做:

<img src="/classpath/presentation/test.jpg" />

然而,当我在我们的生产服务器(RHEL5)上运行应用程序时,我得到一个具有相同路径的404。

在Boot.scala中我有:

ResourceServer.allow {

    case "presentation" :: tail => true

}

非常感谢任何帮助,在此先感谢:)

1 个答案:

答案 0 :(得分:2)

要为遇到类似问题的人解决此问题,只需将“toServe”更改为“toserve”。

Windows以不同的方式对待Linux。