-
Bug
-
Resolution: Done
-
Major
-
9.0.1.Final
-
None
The following code runs with an active transaction on WFLY 8.2.0, but failes with an TransactionRequiredException on WFLY 9.0.1:
@ApplicationScoped
public class InitCocktailDemoDataService
{
@PersistenceContext
private EntityManager entityManager;
@Transactional
private void createDemoData(@Observes @Initialized(ApplicationScoped.class) Object event)
It seems that interceptors aren't called at all - at least for observers of scope lifecycle events.
- is blocked by
-
WELD-2043 Private producer, disposer and observer methods are not intercepted
- Resolved