-
1. Re: seam 3 missing many things ??? so what to do
lightguard Feb 5, 2013 9:38 PM (in response to rahul22)1 of 1 people found this helpfulManish Prajapati wrote:
hi,
https://community.jboss.org/thread/178524
https://community.jboss.org/message/716331
above discussion tell many things about seam 2 to seam 3 migration .
still what to do with following ????
1. synchronized annotation from seam 2 ----
I can't really think of a need for this in CDI / Seam 3
2. classes extending seamListener
Um, my best idea is to create a new @ApplicationScoped bean and use @PreDestory, or create a CDI extension and listen to the BeforeShutdown event and the AfterDeploymentValidation event. That's actually probably the best.
3. ServletLifeCycle.beginRequest()
Create a ServletRequestListener.
4. Conversation.isnested() , conversation.getviewId()
isNested - Seam3 doesn't have nested conversations
getViewId - Pull that from the FacesContext
5.FacesManager.instance().getParentConversationViewId();
these changes are like hurdles ,what to do ?????
I don't recall off the top of my head, but I think there's something in Seam Faces.
i would really appreciate any suggestion , anything on above .
plz help
Thanks
-
2. Re: seam 3 missing many things ??? so what to do
rahul22 Feb 6, 2013 7:48 AM (in response to lightguard)hi jason ,
in seam 3 if i want to skip a page so do we have UIAction or UIConversationId here like seam 2 ?????
i can't see one , or jsf2 provide something similar ???
Thanks