How to use ConversationScope with vaadin?

211 Views Asked by At

When using Vaadin 7.x with the CDI Addon, is it possible to use the Conversation scope (begin() and end() conversation within an UI or View? If so, where would I have to place the code to avoid side affects?

Clarification: I am on JBoss EAP6.1 (7.2) so its JEE6 with CDI1.0.

1

There are 1 best solutions below

2
On

The conversation scope in CDI 1.0 is tightly bound to JSF, you won't be able to use it in CDI 1.0 without doing some implementation specific hacks.