You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When possible, a built-in CDI stereotype should be added to replace EJB @stateless. Here is an outline of such a stereotype:
@ApplicationScoped@Transactional@Lock(READ_WRITE)
@MaxConcurrency(10)
@Monitored// Vendors should be able to add their own sensible functionality@Stereotype@Target(TYPE)
@Retention(RUNTIME)
public @interface Service {}
The text was updated successfully, but these errors were encountered:
When possible, a built-in CDI stereotype should be added to replace EJB @stateless. Here is an outline of such a stereotype:
The text was updated successfully, but these errors were encountered: