/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.sun.ejb31.test; import javax.ejb.Singleton; @Singleton public class CounterBean { private int hitCount; public synchronized int incrementAndGetHitCount() { return hitCount++; } }