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?



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

Answer / 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

More Apache Tapestry Interview Questions

What is apache tapestry?

1 Answers  


How should do page navigation in apache tapestry?

1 Answers  


How do I make a link popup a new window?

1 Answers  


Can I use the same component multiple times in one template?

1 Answers  


How to get a file from client input to server end in apache tapestry?

1 Answers  


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

1 Answers  


What’s the lifecycle of a form submit?

1 Answers  


What does it cost?

1 Answers  


Does tapestry use jsp tag libraries?

1 Answers  


How do we write components in apache tapestry?

1 Answers  


How to alter the url to point to the correct page?

1 Answers  


How is the performance of tapestry?

1 Answers  


Categories