2 Replies Latest reply on Feb 23, 2007 5:12 PM by fernando_jmt

    How to refer to multiple instances of Seam component in JSF

    tlu1

      I have a Seam entity component with the following name

      @Name("mortgage")

      In my JSF page, I need to work with several instances of "mortgage". How do I refer to each instance ?

      In my session bean, I want Seam to inject the instances as

      @In(value="mortgage1")
      private Mortgage mortgage1;
      @In(value="mortgage2")
      private Mortgage mortgage2;

      Thanks, any help is appreciated.