KEMBAR78
Ch. 11 deploying | PDF
Chapter 11
Deploying your web app
Deployment
• Where do YOU put things in the web app?
• Where will the CONTAINER look for things in the web app?
• How does the CLIENT request things in the web app?
• Where do you put
• static resources?
• JSP pages?
• Servlet class files?
• JavaBean class files?
• Listener class files?
• Tag Files?
• Tag handler classes?
• TLDs?
• JAR files?
• The web.xml DD?
• …?
Deploy via
a WAR
Protecting
via
deployment
Accessing below WEB-INF & META-INF
Actual
and virtual
directory
structure
Welcome files in the DD
http://localhost:8080/MyTestApp/
http://localhost:8080/MyTestApp/registration/
http://localhost:8080/MyTestApp/search/
http://localhost:8080/MyTestApp/registration/newMember/
Error pages in the DD
Servlet initialization in the DD
EJB-related DD tags
< mime-mapping> DD tag

Ch. 11 deploying