java Programming Glossary: reuseable
JSF Service Layer http://stackoverflow.com/questions/13011392/jsf-service-layer on the service call result . This way the service layer is reuseable for other front ends such as JAX RS or even plain servlets...
Get current page programmatically http://stackoverflow.com/questions/3253923/get-current-page-programmatically available as follows # view.viewId Exactly this value is reuseable in navigation case outcomes such as h link outcome and h button.. as follows # request.requestURI Exactly this value is reuseable in h outputLink value or plain a href . Note that you can't..
How to create dynamic JSF 1.2 form fields http://stackoverflow.com/questions/3510614/how-to-create-dynamic-jsf-1-2-form-fields most easy to most hard and subsequently also from least reuseable to best reuseable. It's up to you to pick whatever the best.. hard and subsequently also from least reuseable to best reuseable. It's up to you to pick whatever the best suits your functional..
When to use <ui:include>, tag files, composite components and/or custom components? http://stackoverflow.com/questions/6822000/when-to-use-uiinclude-tag-files-composite-components-and-or-custom-componen if you want to split main page layout fragments into reuseable templates. E.g. header menu footer etc. An example can be found.. 2.0 Facelets Use Facelet tag files if you want to have a reuseable group of components in order to prevent minimize code duplication... Composite Components if you want to create a single and reuseable custom UIComponent with a single responsibility using pure XML...
|