previous | index | next

Configuration File Example

Suppose we want welcome.html to be the web application's default page:
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         version="2.4">

<welcome-file-list>
   <welcome-file>welcome.html</welcome-file>
</welcome-file-list>

</web-app>  
For configuration changes to take effect, the container must be shutdown and restarted.

previous | index | next