SequenceGeneratorBean.java~10~
上传用户: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 = ((Integer) context.lookup("java:comp/env/blockSize")).intValue();
  30.      retryCount = ((Integer) context.lookup("java:comp/env/retryCount")).intValue();
  31.      sequenceHome = (SequenceHome) context.lookup("java:comp/env/Sequence");
  32.    }
  33.    catch(javax.naming.NamingException e) {
  34.      throw new javax.ejb.EJBException(e);
  35.    }
  36.   }
  37.   public int nextSequenceNumber(String name) {
  38.     try {
  39.          Entry entry = (Entry) entries.get(name);
  40.          if(entry == null) {
  41.            // add an entry to the sequence table
  42.            entry = new Entry();
  43.            try {
  44.              entry.sequence = sequenceHome.findByPrimaryKey(name);
  45.            }
  46.            catch(javax.ejb.FinderException e) {
  47.              // if we couldn't find it, then create it...
  48.              entry.sequence = sequenceHome.create(name);
  49.            }
  50.            entries.put(name, entry);
  51.          }
  52.          if(entry.last > entry.first + blockSize) {
  53.            for(int retry = 0; true; retry++) {
  54.              try {
  55.                entry.first = entry.sequence.seqValueBeforeIncrementingBy(blockSize);
  56.                entry.last = entry.first;
  57.                break;
  58.              }
  59.              catch(Exception e) {
  60.                if(retry < retryCount) {
  61.                  // we hit a concurrency exception, so try again...
  62.                  continue;
  63.                }
  64.                else {
  65.                  // we tried too many times, so fail...
  66.                  throw new javax.ejb.EJBException(e);
  67.                }
  68.              }
  69.            }
  70.          }
  71.          return entry.last++;
  72.        }
  73.        catch(javax.ejb.CreateException e) {
  74.          throw new javax.ejb.EJBException(e);
  75.        }
  76.        catch(Exception e) {
  77.          throw new javax.ejb.EJBException(e);
  78.        }
  79.   }
  80. }