0

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.

Jan Galinski
  • 11,768
  • 8
  • 54
  • 77

1 Answers1

0

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.

LightGuard
  • 5,298
  • 19
  • 19
  • Could you give some hints how "implementation specific hacks" would have to look like? We could life with a solution that only works for EAP and Vaadin 7.1.x ... – Jan Galinski Jan 12 '14 at 06:42
  • The code is old, and I'm not sure if it still works, but you can take a look at https://github.com/seam/conversation – LightGuard Jan 16 '14 at 21:25