Place GWT application on Jetty

Posted by Noor on Stack Overflow See other posts from Stack Overflow or by Noor
Published on 2011-01-11T13:10:48Z Indexed on 2011/01/11 13:54 UTC
Read the original article Hit count: 153

Filed under:
|
|

Can someone help me to place my GWT application on Jetty. I am not using maven. I have libraries in my build path.

First I am taking the war folder already exploded and copy it in jetty/webapps, then in folder context.

  1. I have placed a folde named BiddingSystem in folder web apps, it is an already exploded folder and not a .war file

  2. In folder jetty/context, there is a file test.xml I am renaming the file to BiddingSystem.xml

and also editing content of BiddingSystem.xml, finally the content of BiddingSystem.xml is

<?xml version="1.0"  encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<configure class="org.mortbay.jetty.webapp.WebAppContext">
  <set name="contextPath">/BiddingSystem</set>
  <set name="war"><systemproperty name="jetty.home" default="."/>/webapps/BiddingSystem</set>
</configure>

I am getting this error:

alt text

© Stack Overflow or respective owner

Related posts about gwt

Related posts about deployment