views:

32

answers:

1

It is done through some session key that holds some structure?

+1  A: 

CDI is a specification, so the conversation scope is only specified, not implemented. Different implementors may decide on different strategies. Currently there are three - Weld, OpenWebBeans and CanDI. I don't know how it is implemented, but there aren't many ways - using the session in some way is most likely.

see this tutorial

Bozho
thx, i see, i will download weld to see its implementation