Find Entity With Compound Key : Entity Bean « EJB3 « Java Tutorial

Home
Java Tutorial
1.Language
2.Data Type
3.Operators
4.Statement Control
5.Class Definition
6.Development
7.Reflection
8.Regular Expressions
9.Collections
10.Thread
11.File
12.Generics
13.I18N
14.Swing
15.Swing Event
16.2D Graphics
17.SWT
18.SWT 2D Graphics
19.Network
20.Database
21.Hibernate
22.JPA
23.JSP
24.JSTL
25.Servlet
26.Web Services SOA
27.EJB3
28.Spring
29.PDF
30.Email
31.J2ME
32.J2EE Application
33.XML
34.Design Pattern
35.Log
36.Security
37.Apache Common
38.Ant
39.JUnit
Java Tutorial » EJB3 » Entity Bean 
27.12.1.Find Entity With Compound KeyPrevious/Next

File: Customer.java

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.IdClass;

@Entity
@IdClass(CustomerPK.class)
public class Customer implements java.io.Serializable {
  private String firstName;

  private String lastName;

  private long ssn;

  public String getFirstName() {
    return firstName;
  }

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

  @Id
  public String getLastName() {
    return lastName;
  }

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

  @Id
  public long getSsn() {
    return ssn;
  }

  public void setSsn(long ssn) {
    this.ssn = ssn;
  }
}

class CustomerPK implements java.io.Serializable {
  private String lastName;

  private long ssn;

  public CustomerPK() {
  }

  public CustomerPK(String lastName, long ssn) {
    this.lastName = lastName;
    this.ssn = ssn;
  }

  public String getLastName() {
    return this.lastName;
  }

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

  public long getSsn() {
    return ssn;
  }

  public void setSsn(long ssn) {
    this.ssn = ssn;
  }

  public boolean equals(Object obj) {
    if (obj == this)
      return true;
    if (!(obj instanceof CustomerPK))
      return false;
    CustomerPK pk = (CustomerPKobj;
    if (!lastName.equals(pk.lastName))
      return false;
    if (ssn != pk.ssn)
      return false;
    return true;
  }

  public int hashCode() {
    return lastName.hashCode() (intssn;
  }
}

File: EmployeeBean.java

import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;

@Stateless
public class EmployeeBean implements EmployeeServiceLocal, EmployeeServiceRemote {
  @PersistenceContext(unitName="EmployeeService"private EntityManager manager;
  public void doAction(){
    Customer cust = new Customer();

    cust.setLastName("Bond");
    cust.setSsn(123456789L);
    manager.persist(cust);
    
    System.out.println("Saved");
    
    CustomerPK pk = new CustomerPK("Bond"123456789L);
    cust = manager.find(Customer.class, pk);
    
    
  }
}

File: EmployeeServiceLocal.java

import javax.ejb.Local;
import javax.jws.WebParam;

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


}

File: EmployeeServiceRemote.java

import javax.ejb.Remote;


@Remote
public interface EmployeeServiceRemote {
  public void 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

File: Main.java

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


public class Main {

  public static void main(String[] athrows Exception {

    EmployeeServiceRemote service = null;

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

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


    service.doAction();
    


  }

}
  Download:  EJB-FindEntityWithCompoundKey.zip( 4,489 k)
27.12.Entity Bean
27.12.1.Find Entity With Compound Key
27.12.2.Entity Bean With Generated ID
27.12.3.Entity Bean With Compound Key
27.12.4.Retrieve Entity Bean
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.