posted 21 years ago
Hi,
You can use the static final variable without problems in an EJB.
However if you use static variables which are not final then if you deploy your EJB in more than one application server the static variable may not be consistentent over the servers. If this is not a requirement then its ok I guess.
The ejb specification in fact contains a sample with static final variables