Mark One Method With Two Lifecycle Annotations : Stateless Session Bean « EJB3 « Java






Mark One Method With Two Lifecycle Annotations


File: EmployeeBean.java



import javax.annotation.PostConstruct;
import javax.ejb.PostActivate;
import javax.ejb.Stateless;

@Stateless
public class EmployeeBean implements EmployeeServiceLocal, EmployeeServiceRemote {


  public EmployeeBean() {
  }

  @PostConstruct
  @PostActivate 
  public void doAction() {
  }
}


File: EmployeeServiceLocal.java



import javax.ejb.Local;

@Local
public interface EmployeeServiceLocal {
  public void doAction();


}


File: EmployeeServiceRemote.java

import javax.ejb.Remote;


@Remote
public interface EmployeeServiceRemote {
  public void doAction();




}


File: Employee.java


import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.PostRemove;

@Entity

public class Employee implements java.io.Serializable {
  private int id;

  private String firstName;

  private String lastName;

  @Id
  @GeneratedValue
  public int getId() {
    return id;
  }


  @PostRemove
  public void postRemove()
  {
     System.out.println("@PostRemove");
  }

  public void setId(int id) {
    this.id = id;
  }

  public String getFirstName() {
    return firstName;
  }

  public void setFirstName(String first) {
    this.firstName = first;
  }

  public String getLastName() {
    return lastName;
  }

  public void setLastName(String last) {
    this.lastName = last;
  }
}


File: Main.java

import javax.ejb.EJB;
import javax.naming.InitialContext;


public class Main {

  public static void main(String[] a) throws Exception {

    EmployeeServiceRemote service = null;

    // Context compEnv = (Context) new InitialContext().lookup("java:comp/env");

    // service = (HelloService)new
    // InitialContext().lookup("java:comp/env/ejb/HelloService");
    service = (EmployeeServiceRemote) new InitialContext().lookup("EmployeeBean/remote");


    service.doAction();
    


  }

}


File: jndi.properties

java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=localhost:1099




           
       








EJB-MarkOneMethodWithTwoLifecycleAnnotations.zip( 4,488 k)

Related examples in the same category

1.Throw Exception Out of Ejb Method
2.Stateless Session Bean With Three Methods
3.Use EJB To Mark EJB
4.Use Stateless Session Bean To PersistEntity
5.Use Stateless Annotation To Change Ejb Name
6.EJB Tutorial from JBoss: stateless session bean
7.EJB Tutorial from JBoss: stateless session bean deployment descriptor
8.One Stateless Session Bean Call Another Stateless Bean
9.EJB Method With Interceptors