JSP.C.4 The Web Application Descriptor


The servlet is made to look as a JSP page with the following web.xml :

 <!DOCTYPE webapp     SYSTEM "http://java.sun.com/j2ee/dtds/web-app_1_2.dtd">  <webapp>     <servlet>             <servlet-name> HelloWorld </servlet-name>             <servlet-class> HelloWorld.class </servlet-class>     </servlet>     <servlet-mapping>             <servlet-name> HelloWorld </servlet-name>             <url-pattern> /HelloWorld.jsp </url-pattern>     </servlet-mapping>     <session-config>             <session-timeout> 1 </session-timeout>     </session-config>  </webapp> 


Java 2 Platform, Enterprise Edition. Platform and Component Specifications
Java 2 Platform, Enterprise Edition: Platform and Component Specifications
ISBN: 0201704560
EAN: 2147483647
Year: 2000
Pages: 399

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net