Performance tuning for JSF

Can I list the best practices for configuring JSF WebApp @?

+3
source share
2 answers

JSF RichFace

Never put logic in your getters. They are called several times and should only return something already populated by another method. For example, if you group the drop-down lists together, use the a4j: support tag on the first with an action attribute that loads the data, which is then retrieved when the second one is retransmitted.

ajaxSingle = "true", .
. , rich: dataTable, , h: dataTable.

= true , . .

EL, Java bean

JSF BestPractices

+4

Source: https://habr.com/ru/post/1761719/


All Articles