Use User Transaction In Client Side : Transaction « EJB3 « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java Tutorial
Java Book
Java Source Code / Java Documentation
Java Source Code / Java Documentation 2
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
SCJP
Spring questions and answers
Swing questions and answers
JPA questions and answers
Java » EJB3 » TransactionScreenshots 
Use User Transaction In Client Side

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: EmployeeBean.java



import javax.annotation.Resource;
import javax.ejb.Stateful;
import javax.ejb.TransactionManagement;
import javax.ejb.TransactionManagementType;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.PersistenceContextType;
import javax.transaction.UserTransaction;

@Stateful
@TransactionManagement(TransactionManagementType.BEAN)
public class EmployeeBean implements EmployeeServiceLocal, EmployeeServiceRemote {
  @PersistenceContext(unitName = "EmployeeService", type = PersistenceContextType.EXTENDED)
  private EntityManager em;

  @Resource
  private UserTransaction ut;
  
  public EmployeeBean() {
  }


  public void doAction() {
    Employee emp = new Employee();
    emp.setFirstName("first");
    em.persist(emp);

  }
  public <T> T mergeEntity(T entity) {
    return em.merge(entity);
  }

  public <T> T persistEntity(T entity) {
    em.persist(entity);
    return entity;
  }

  public <T> T refreshEntity(T entity) {
    em.refresh(entity);
    return entity;
  }

  public void removeEntity(Object entity) {
    em.remove(em.merge(entity));
  }
  public void beginTrans()
    throws Exception {
    ut.begin();
  }

  public void commitTrans()
    throws Exception {
    ut.commit();
  }

  public void rollbackTrans()
    throws Exception {
    ut.rollback();
  }
}


File: EmployeeServiceLocal.java



import javax.ejb.Local;

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

  <T> T mergeEntity(T entity);

  <T> T persistEntity(T entity);

  <T> T refreshEntity(T entity);

  void removeEntity(Object entity);

  void beginTrans() throws Exception;

  void commitTrans() throws Exception;

  void rollbackTrans() throws Exception;
}


File: EmployeeServiceRemote.java

import javax.ejb.Remote;


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

  <T> T mergeEntity(T entity);

  <T> T persistEntity(T entity);

  <T> T refreshEntity(T entity);

  void removeEntity(Object entity);

  void beginTrans() throws Exception;

  void commitTrans() throws Exception;

  void rollbackTrans() throws Exception;

}


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.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.beginTrans();
    service.doAction();
    service.commitTrans();
  }

}





           
       
EJB-UseUserTransactionInClientSide.zip( 4,489 k)
Related examples in the same category
1.Container Managed Transaction
2.Container Managed Transaction: TransactionAttributeType.SUPPORTS
3.Transaction Management Type: BEAN
4.Transaction Attribute Type: SUPPORTS
5.Transaction Attribute Type: REQUIRES_NEW
6.Inject Transaction As Resource
7.Mark Stateful Session Bean As Transaction Attribute Type: REQUIRES_NEW
8.Container Managed Transaction: Required
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.