There's something you could do to make Jetty wait at the breakpoints longer.
(it apparently won't wait forever) Just set the maxIdleTime value to
something large.



<plugin>
  <groupId>org.mortbay.jetty</groupId>
    <artifactId>maven-jetty-plugin</artifactId>
    <dependencies>
      <dependency>
        <groupId>org.apache.geronimo.specs</groupId>
        <artifactId>geronimo-j2ee_1.4_spec</artifactId>
        <version>1.1</version>
    </dependency>
  </dependencies>
  <configuration>
    <connectors>
      <connector
implementation="org.mortbay.jetty.nio.SelectChannelConnector">
      <port>8080</port>
      <maxIdleTime>3600000</maxIdleTime>
      </connector>
    </connectors>
    <scanIntervalSeconds>5</scanIntervalSeconds>
  </configuration>
</plugin>

the full url can be found at
http://www.mojavelinux.com/blog/archives/2007/03/remote_debugging_with_jetty/ 
-- 
View this message in context: 
http://www.nabble.com/How-to-make-Jetty-wait-at-breakpoints-longer-tf4570897s2369.html#a13046763
Sent from the AppFuse - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to