2 Replies Latest reply on Nov 3, 2010 11:24 AM by willpiasecki

    How I can make multiple instances of a SEAM component?

    torhector2

      Hi everyone,


      I've been having troubles making multiples instances of a Seam Component,


      I've tried to do:





      ... // previous code 
      
      MyClass object1 = Component.getInstance("myClass",true); 
      MyClass object2 = Component.getInstance("myClass",true); 
      MyClass object3 = Component.getInstance("myClass",true); 
      
      ... //more code 






      But I've been readed that the getInstance() method uses the Singleton pattern so object1, object2 and object3 refers to the same instance :S



      I need three different instances of that component, could you help me please?  


      Thanks.



      Sorry about my english but I don't speak english.