JSF

Last-modified: 2008-07-15 (火) 04:36:56

設定ファイル

ManagedBean

  • Managed bean is a JavaBean registered in the faces-config file
  • These beans have properties that are bound to the values of UIComponents
  • Uses value attribute

Backing Bean

  • Backing bean is a special type of managed-bean consisting of properties that are UIComponents
  • Instead of the bean properties being bound to the UIComponent values, they are instead bound to the
    UIComponents themselves
  • Uses binding attribute

リンク