Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] JettyMavenHelloWarApp not found when deployed as .war (obscured by FastCGI)

One more try -

I have created the file $JETTY_BASE/webapps/hello.xml with the content:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
    <Set name="contextPath">/hello</Set>
    <Set name="contextPath">/</Set>
    <Set name="virtualHosts">
            <Array type="java.lang.String">
                    <Item>slova.de</Item>
                    <Item>www.slova.de</Item>
            </Array>
    </Set>
    <Set name="war"><SystemProperty name="jetty.base"/>/webapps/hello-world-0.1-SNAPSHOT.war</Set>
</Configure>

And see in Jetty logs, that the WAR-file is found and deployed:

INFO:oejsh.ContextHandler:Scanner-0: Stopped o.e.j.w.WebAppContext@9720aef{/hello,null,UNAVAILABLE}{/hello-world-0.1-SNAPSHOT.war}
INFO:oejw.StandardDescriptorProcessor:Scanner-0: NO JSP Support for /, did not find org.eclipse.jetty.jsp.JettyJspServlet
INFO:oejsh.ContextHandler:Scanner-0: Started o.e.j.w.WebAppContext@2b82fd43{/,file:///tmp/jetty-127.0.0.1-8080-hello-world-0.1-SNAPSHOT.war-_-slova.de-2204701430203830577.dir/webapp/,AVAILABLE,slova.de}{/hello-world-0.1-SNAPSHOT.war}

However browsing to the following pages results in "404 page" displayed by Wordpress:



Regards
Alex

On Thu, Jun 30, 2016 at 1:53 PM, Alexander Farber <alexander.farber@xxxxxxxxx> wrote:
But my real question is what would be please the best way to specify a path like "/hello" (or "/ws") when developing a WAR-file?

I would like to develop my project in NetBeans and copy the produced WAR-file to the Linux-server (and maybe try to connect to it remotely as described at https://www.eclipse.org/jetty/documentation/9.3.x/enable-remote-debugging.html )

I have read https://www.eclipse.org/jetty/documentation/9.3.x/configuring-contexts.html#setting-context-path but I am still not sure, what would be the best method for specifying context (like "/hello" or "/ws") and vritual host for my WAR-file...





Back to the top