1

我的 tomcat Web 应用程序上传图像并将它们保存在上下文文件夹之外以确保安全。我在本地机器上测试了代码,它运行良好。

当我在 OpenShift 上托管代码时,在下面突出显示的行上出现空指针异常:

public void init() throws ServletException {
    // get name of images directory
    String imagesPath = getServletContext().getInitParameter(
            PARAM_UPLOAD_IMAGE_PATH);

    //get path to context root directory
    String contextRoot = getServletContext().getRealPath("/");



    //remove trailing '/'
    contextRoot = contextRoot.substring(0,contextRoot.length() - 1);//NULL POINTER EXCEPTON

    //get path of directory outside root, where images will be saved.
    String outsideRoot = contextRoot.substring(0, contextRoot.lastIndexOf("/"));

    uploadPath = outsideRoot + File.separator + imagesPath;
}

我不明白问题是什么,因为代码在我的机器上运行良好。托管站点是否不允许您将文件保存在上下文根目录之外?有没有解决的办法?谢谢你的帮助!

4

1 回答 1

1

您在 OpenShift 上实际拥有写入权限的唯一位置是 ~/app-root/data 和 /tmp。

App-root/data 有一个环境变量,您应该在代码 $OPENSHIFT_DATA_DIR 中使用。请更改您的代码以写入此目录。

于 2013-05-26T02:45:12.050 回答