0

Service POJOs are available which is used to define as jBoss services (in Jboss AS 6) in EJB 3.0 and the tutorial is http://docs.jboss.org/ejb3/app-server/tutorial/service/service.html and below are the related annotations.

import org.jboss.ejb3.annotation.Depends;
import org.jboss.ejb3.annotation.Management;
import org.jboss.ejb3.annotation.Service;

Similarly, could anyone please tell me the equivalent implementation in EJB 3.2 as I could not find any related jars or tutorials in wildfly 8 application server.

sridhar
  • 1,117
  • 5
  • 31
  • 59

1 Answers1

0

The functionality of org.jboss.ejb3.annotation.Depends and org.jboss.ejb3.annotation.Service can be replaced by:

There is no replacement for org.jboss.ejb3.annotation.Management

Steve C
  • 18,876
  • 5
  • 34
  • 37