I have to restart my application to pick up changes to specifications and templates, how can I avoid this?
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 |
What is apache tapestry?
How should do page navigation in apache tapestry?
How do I make a link popup a new window?
Can I use the same component multiple times in one template?
How to get a file from client input to server end in apache tapestry?
I have to restart my application to pick up changes to specifications and templates, how can I avoid this?
What’s the lifecycle of a form submit?
What does it cost?
Does tapestry use jsp tag libraries?
How do we write components in apache tapestry?
How to alter the url to point to the correct page?
How is the performance of tapestry?