Possible Duplicate:
JSF managed bean naming conventions
I am starting with JSF (2.0), EJB (3.1) and CDI. So every thing is called a Bean. And in most tutorials the classes are named <something>Bean
, so that it is hard to distinguish from the name if its is a JSF Bean, or EJB Bean or CDI Bean.
(Up to now I was developing Spring applications, and there it was common practice to name the Spring Beans, <something>Service
or <something>Controller
to distinguish them.)
So my question is: is there a common naming convention that makes it possible to distinguish the beans?