This content has been marked as final.
Show 3 replies
-
1. Re: What is best seam project type?
Francisco Jose Peredo Noguez Feb 18, 2009 11:13 PM (in response to Alucard Hellsing)It is simple, use EAR if you want to use EJBs, use WAR if you don't. Read about the difference between EJBs and POJOs here.
-
2. Re: What is best seam project type?
Bernard Labno Feb 19, 2009 10:16 AM (in response to Alucard Hellsing)I use WAR during development for it allows hotswap of most of components. When everything is ready i'm going to move to EAR to convert action beans into EJB session beans (i hope this will increase performence).
If you write small app and you do not care about extra services from EJB container then use WAR for it is easier (you may run in class loading issues and other delicate issues with EAR).
-
3. Re: What is best seam project type?
Alucard Hellsing Feb 20, 2009 4:40 PM (in response to Alucard Hellsing)Thanks, that was what I need to know. I'm not sure whether converting pojos to ejbs goes easily, but seems like I'm sticking to war option for a while.