Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

I have to restart my application to pick up changes to specifications and templates, how can I avoid this?

Answer Posted / Amit Ranjan

To avoid restarting your Apache Tapestry application for every change in specifications or templates, you can use a development server like Jetty or Tomcat with automatic reloading enabled. In Maven-based projects, this can be achieved by adding the following plugins to your pom.xml file:

```xml
<build>
<plugins>
<plugin>
<groupId>org.apache.tapestry</groupId>
<artifactId>tapestry-maven-plugin</artifactId>
<!-- ... -->
<configuration>
<!-- ... -->
<devMode>true</devMode>
</configuration>
</plugin>
</plugins>
</build>
```

This will enable automatic reloading of your application during development.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

No New Questions to Answer in this Category !!    You can

Post New Questions

Answer Questions in Different Category