SequenceGeneratorBean.java~11~
上传用户:jnhyscl
上传日期:2010-03-08
资源大小:345k
文件大小:3k
源码类别:

电子政务应用

开发平台:

Java

  1. package shiponline;
  2. import javax.ejb.*;
  3. public class SequenceGeneratorBean implements SessionBean {
  4.   SessionContext sessionContext;
  5.   private class Entry {
  6.    Sequence sequence;
  7.    int first = 0;
  8.    int last = Integer.MAX_VALUE;
  9.  };
  10.  private java.util.Hashtable entries = new java.util.Hashtable();
  11.  private int blockSize;
  12.  private int retryCount;
  13.  private SequenceHome sequenceHome;
  14.  public void ejbCreate() throws CreateException {
  15.     /**@todo Complete this method*/
  16.   }
  17.   public void ejbRemove() {
  18.     /**@todo Complete this method*/
  19.   }
  20.   public void ejbActivate() {
  21.     /**@todo Complete this method*/
  22.   }
  23.   public void ejbPassivate() {
  24.     /**@todo Complete this method*/
  25.   }
  26.   public void setSessionContext(SessionContext sessionContext) {
  27.     try {
  28.      javax.naming.Context context = new javax.naming.InitialContext();
  29.      blockSize=1;
  30.      retryCount=5;
  31.      //blockSize = ((Integer) context.lookup("java:comp/env/blockSize")).intValue();
  32.      //retryCount =/((Integer) context.lookup("java:comp/env/retryCount")).intValue();
  33.      sequenceHome = (SequenceHome) context.lookup("java:comp/env/Sequence");
  34.    }
  35.    catch(javax.naming.NamingException e) {
  36.      throw new javax.ejb.EJBException(e);
  37.    }
  38.   }
  39.   public int nextSequenceNumber(String name) {
  40.     try {
  41.          Entry entry = (Entry) entries.get(name);
  42.          if(entry == null) {
  43.            // add an entry to the sequence table
  44.            entry = new Entry();
  45.            try {
  46.              entry.sequence = sequenceHome.findByPrimaryKey(name);
  47.            }
  48.            catch(javax.ejb.FinderException e) {
  49.              // if we couldn't find it, then create it...
  50.              entry.sequence = sequenceHome.create(name);
  51.            }
  52.            entries.put(name, entry);
  53.          }
  54.          if(entry.last > entry.first + blockSize) {
  55.            for(int retry = 0; true; retry++) {
  56.              try {
  57.                entry.first = entry.sequence.seqValueBeforeIncrementingBy(blockSize);
  58.                entry.last = entry.first;
  59.                break;
  60.              }
  61.              catch(Exception e) {
  62.                if(retry < retryCount) {
  63.                  // we hit a concurrency exception, so try again...
  64.                  continue;
  65.                }
  66.                else {
  67.                  // we tried too many times, so fail...
  68.                  throw new javax.ejb.EJBException(e);
  69.                }
  70.              }
  71.            }
  72.          }
  73.          return entry.last++;
  74.        }
  75.        catch(javax.ejb.CreateException e) {
  76.          throw new javax.ejb.EJBException(e);
  77.        }
  78.        catch(Exception e) {
  79.          throw new javax.ejb.EJBException(e);
  80.        }
  81.   }
  82. }