NullPointerException na inicialização do Jetty 7 com o descritor de implementação Jetty

2

Estou recebendo o seguinte erro ao iniciar o Jetty:

2010-03-01 12:30:19.328:WARN::Failed startup of context WebAppContext@15ddf5@15ddf5/webapp,null,/path/to/jetty-distribution-7.0.1.v20091125/webapps-plus/webapp.war

Com esta linha de comando:

java -jar start.jar OPTIONS=All lib=/path/to/jetty-distribution-7.0.1.v20091125/lib/ext etc/jetty.xml etc/jetty-plus.xml /path/to/webapp/src/configuration/test.xml

e o test.xml contém:

<?xml version="1.0"  encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
  <Set name="contextPath">/webapp</Set>
  <Set name="war"><SystemProperty name="jetty.home" default="."/>/webapps-plus/webapp.war</Set>
</Configure>

Se eu não incluir o test.xml na linha de comando, tudo funcionará bem.

    
por Draemon 01.03.2010 / 13:42

1 resposta

0

meu palpite é que você tem uma barra adicional. substituir

<Set name="war"><SystemProperty name="jetty.home" default="."/>/webapps-plus/webapp.war</Set>

com

<Set name="war"><SystemProperty name="jetty.home" default=".">/webapps-plus/webapp.war</Set>
    
por 01.03.2010 / 15:37

Tags