Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Create a plain text file in the <app_home>/WEB-INF directory named geronimo-web.xml and copy the content of the following example.

Code Block
xml
xml
borderStylesolid
titleGeronimo deployment plan geronimo-web.xmlxml
<?xml version="1.0"?>
<web-app
   xmlns="http://geronimo.apache.org/xml/ns/web"
   xmlns:naming="http://geronimo.apache.org/xml/ns/naming"
   configId="HelloWorld">

   <context-root>/hello</context-root>

</web-app>

Create a plain text file in the <app_home>/WEB-INF directory named web.xml and copy the content of the following example.

Code Block
xml
xml
borderStylesolid
titleweb.xmlxml
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
   <welcome-file-list>
      <welcome-file>HelloWorld.jsp</welcome-file>
   </welcome-file-list>
</web-app>

...