Reputation: 1945
Do I need hands on experience in following before starting EJB 3.
If hands on exp is required please suggest some source/tutorial for quick overview. So I can start EJB 3 asap.
Upvotes: 0
Views: 667
Reputation: 3769
Ejb2 knowledge is absolutely not required. Better yet, EJB2 knowledge isn't even recommended.
Home interfaces, Entity Beans (not to be confused with JPA entities) and portable remote objects are things that only burden you and there's no benifit to know about that in EJB3.
Best to forget EJB2 ever existed and directly learn things the EJB3 way.
RMI is also not a prerequisite. It's a special case for IFF you want to use remote beans, and even then you don't have to know a lot about RMI in order to use it.
Upvotes: 0
Reputation: 19378
Understanding annotations is definitely a must. But if you have that and basic Java programming skills, I suggest you dive right in.
Seeing and running code is definitely the best way to learn.
The benefit Stackoverflow can offer increases the more specific the question gets. So at the very least, the above code could be looked at as one way to get more specific questions :)
Happy learning!
Upvotes: 1