HiHow many create method can be there for stateless session bean and for stateful session bean.Is there will be stateless session bean without any create method.
As per EJB2.0 a stateless session bean should have exactly one create method without any parameter list. A stateful session bean can have any number of create methods depending on what information you want to maintain between each method invocations.