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