Friday Quiz - learn-struts-fast/struts-tutorials GitHub Wiki
- To customize how Struts tags render HTML, which two template technologies come standard with Struts?
- Thymeleaf
- Velocity
- Groovy
- FreeMarker
- Which of the following is correct way to declare an i18n resource bundle?
- ApplicationResources_en_US_TX
- ApplicationResources_TX_US_en
- ApplicationResources_US_TX_en
- ApplicationResources_TX_en_US
- What is the preferred approach for including Ajax calls in your code?
- jQuery template
- Ajax template
- Ajax plugin
- jQuery plugin
- For the following tag to display the discount code,
<s: property value="discountCode"/>
the action class must have:
- A public property named discountCode
- A public getter named getDiscountCode()
- A public setter named setDiscountCode()
- A property named discountCode and corresponding setters and getters
- The Struts framework for helping to create page layouts is known as:
- Faces
- Tiles
- MVC
- Portal