[jboss-user] [JBoss Seam] - Re: New Conversation issue

rbalaga do-not-reply at jboss.com
Fri Apr 20 06:58:31 EDT 2007


It's not a statefull compont but Java Beans but there is conversation scope without promotion to long running convesation.
The class is from "drools" example. 

@Name("guess")
@Scope(ScopeType.CONVERSATION)
public class Guess
{

   private Integer value;

   public void setValue(Integer guess)
   {
      this.value = guess;
   }
   
   public Integer getValue()
   {
      return value;
   }

}

I'm starting to realize that if conversation componet is created during the existed conversation it will not be destroyed during render phase of JSF request, but when the existing convesation end.
Am i right?



View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039213#4039213

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039213



More information about the jboss-user mailing list