file locations in Java EE Application
Guys, I am taking this class in Enterprise Java and developing a project using NetBeans. But I am kinda confused because there are 2 folders (ejb and war).
So how do i find out which layer goes in which folder. For example where does the domain, service, business and presentation layer files go respectively?
I know business layers are created as EJB session beans and goes in ejb folder. and the presentation (JSP)goes in war folder. what about domain layers, service layer(factory and other implementation files) and struts files reside? in ejb or war folder?
Also are domain layers created as ejb's or pojo's?