在OpenShift中部署的spark - 找不到资源

时间:2015-10-28 08:59:01

标签: openshift web.xml spark-java

我使用git push为OpenShift部署了一个简单的hello world spark maven应用程序。但是当我尝试调用url时,它会提供HTTP 404。

在localhost中,它工作正常。

这是我的web.xml,它基于Spark的文档(http://sparkjava.com/documentation.html#other-webserver):

<web-app version="3.0"
     xmlns="http://java.sun.com/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
     metadata-complete="false">


 <filter>
    <filter-name>SparkFilter</filter-name>
    <filter-class>spark.servlet.SparkFilter</filter-class>
    <init-param>
        <param-name>applicationClass</param-name>
        <param-value>com.api.lwt.HelloWorld</param-value>
    </init-param>
</filter>

<filter-mapping>
    <filter-name>SparkFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

我是部署java的新手。也许我错过了一些东西。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

How to deploy a spark Java web app? 在这里提到你必须排除带有spark作为依赖关系的jetty库。这有用吗?