hi johannes
i tried using mvn jetty:run

but i am getting the following error

Configuring Jetty for project: jqms
Webapp source directory = E:\Netbeans\MyProjects\maven\jqms\src\main\webapp
Reload Mechanic: automatic
web.xml file =
E:\Netbeans\MyProjects\maven\jqms\src\main\webapp\WEB-INF\web.xml
Classes = E:\Netbeans\MyProjects\maven\jqms\target\classes
2009-08-08 23:51:47.251::INFO:  Logging to STDERR via
org.mortbay.log.StdErrLog
Context path = /jqms
Tmp directory =  determined at runtime
Web defaults = org/mortbay/jetty/webapp/webdefault.xml
Web overrides =  none
Webapp directory = E:\Netbeans\MyProjects\maven\jqms\src\main\webapp
Starting jetty 6.1.14 ...
2009-08-08 23:51:47.581::INFO:  jetty-6.1.14
2009-08-08 23:51:48.145::INFO:  No Transaction manager found - if your
webapp requires one, please configure one.
2009-08-08 23:51:48.196::WARN:  Failed startup of context
org.mortbay.jetty.plugin.jetty6pluginwebappcont...@1270107
{/jqms,E:\Netbeans\MyProjects\maven\jqms\src\main\webapp}
java.util.zip.ZipException: error in opening zip file
        at java.util.zip.ZipFile.open(Native Method)
        at java.util.zip.ZipFile.<init>(ZipFile.java:114)
        at java.util.jar.JarFile.<init>(JarFile.java:133)
        at java.util.jar.JarFile.<init>(JarFile.java:97)
        at
org.mortbay.jetty.webapp.TagLibConfiguration.configureWebApp(TagLibConfiguration.java:168)
        at
org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1231)
        at
org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:517)
        at
org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.java:460)
        at
org.mortbay.jetty.plugin.Jetty6PluginWebAppContext.doStart(Jetty6PluginWebAppContext.java:124)
        at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
        at
org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:152)
        at
org.mortbay.jetty.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:156)
        at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:50)
        at
org.mortbay.jetty.handler.HandlerCollection.doStart(HandlerCollection.java:152)

 But when i run the application using the start.java file i works perfectly
 and as i stated earlier hot deployment is not working

On Sat, Aug 8, 2009 at 10:30 PM, Johannes Schneider
<[email protected]>wrote:

> Hi,
>
> I strongly suggest starting Jetty using Maven
>
> mvn jetty:run
>
> I add the following configuration
>
>
>  <build>
>    <plugins>
>      <plugin>
>        <groupId>org.mortbay.jetty</groupId>
>        <artifactId>maven-jetty-plugin</artifactId>
>        <configuration>
>          <scanIntervalSeconds>1</scanIntervalSeconds>
>          <reload>manual</reload>
>        </configuration>
>      </plugin>
>    </plugins>
>  </build>
>
>
> Reloading is triggered manually from the console. I like that behviour
> (so I can recompile/copy resources without restarting).
>
>
> Regards,
>
> Johannes Schneider
>
>
> Anantha Kumaran wrote:
> > hi
> > currently i am using ant and tomcat server (netbeans) to build my wicket
> > application.
> > The deployment and testing is taking lot of time.so i created a wicket
> > project using
> > the wicket-quickstart archetype.The problem is that i cannot view the
> > changes
> > made by me without restarting the jetty server.
> >
> > then i googled the net and found that i have to add   scanIntervals and
> some
> > other settings.
> > but i donn't know where to add this in the start.java file.
> >
> >
> > it will be helpful if anyone post the modified start.java file which
> support
> > the hot deployment
> >
> >
> >
> > thanks
> > Anantha Kumaran
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to