0 Replies Latest reply on Jul 30, 2007 7:21 AM by thiagu.m

    How to set the value of bean property (type java.util.Set) f

      Hi,

      I have 2 tables category and product. they have one-to-many relation in them.

      Category : cat_id(PK),cat_name,cat_desc
      Product : prod_id(PK),prod_name,prod_desc,cat_id(FK)

      As both have one to many relation so i have declared a set in Category Table.


      
      class Category implements Serializable
      {
      ........
      Set products;
      public void setProducts(Set prod)
      {
      this.products = prod;
      }
      public Set getProducts()
      {
      return products;
      }
      ......
      }
      


      i need to refer the result list of Category entity bean from my JSF view page.
      here my problem is i cant diplay the set value in my JSF page, becaause no one JSF component to support to display the Set value
      so i convert the Set value into List and then i can diplay it, as in

      http://sfjsf.blogspot.com/2006/03/usings-sets-with-uidata.html#c2983217366300626078

      here the same proble will arrives when i need to set the value to Category entity bean,

      i dont know how to set the property value of "products" Category class from my JSF page

      Please any one help to how to set the value to "Category" class property "products"

      By
      Thiagu.m