Apache Tapestry Interview Questions and Answers
Freshers / Beginner level questions & answers
Ques 1. What is Apache Tapestry?
- A component-based view framework.
- Classes are written as POJOs and byte-code transformed at run time
- Configured with annotations and naming conventions rather than XML
- Compared to JSPs, enforces a clear separation of HTML markup and Java code.
- HTML templates are directly previewable by web designers
- Changed component classes are live-reloaded into running application for faster development.
- Uses the Post/Redirect/Get navigation pattern for form submission.
Ques 2. Does Tapestry use JSP Tag libraries?
No. Tapestry does not use JSP Tag library.
Ques 3. Is Apache Tapestry free/open source?
Yes. Tapestry is open source and free.
Ques 4. How do I make a link popup a new window?
Use the contrib:PopupLink component.
Intermediate / 1 to 5 years experienced level questions & answers
Ques 5. How do we write components in Apache Tapestry?
Experienced / Expert level questions & answers
Ques 6. Why do we need @Script in Apache Tapestry?
Ques 7. How to alter the URL to point to the correct page?
You would need to throw a RedirectException with the new URL; this sends an HTTP redirect to the client.
Ques 8. How should do page navigation in apache tapestry?
Ques 9. How to get a file from client input to server end in apache tapestry?
Most helpful rated by users:
- What is Apache Tapestry?
- Does Tapestry use JSP Tag libraries?
- How do I make a link popup a new window?
- How should do page navigation in apache tapestry?
- How to get a file from client input to server end in apache tapestry?