This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes EJB and other Java EE Technologies and the fly likes deployment Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "deployment" Watch "deployment" New topic
Author

deployment

dhan hazarika
Greenhorn

Joined: Feb 10, 2004
Posts: 3
what does 'deployment' means in J2EE context?
Why EJB is called deployable?
Aju Josep
Greenhorn

Joined: Feb 20, 2004
Posts: 17
deployment means making the j2ee component (ejbs, jsps, servlets, etc) available to the container (A container is what manages u'r j2ee components - the web server for the JSPs/servlets , the app-server for u'r EJBs ...). Usually different container products have different ways for deployment, but usually follow a general pattern. deployment consists of placing u'r components (JSPs, servlets, EJBs ...) at the proper place (i mean the directory location for the web/application server) and informing the web/application server about the same by writing deployment descriptors. A deployment descriptor is usually an XML file which describes the component u are deploying. u can also mention several deployment time options in the deployment descriptior. only after u deploy the components, the container will be aware of u'r component.
Cheers...
Aju.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: deployment
 
Similar Threads
Question about Container Managed Relationship
Doubt in ejbCreate
hot deployment
make default.jsp as home page
Reloading Context