THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
- Create a new directory to hold all the application related files. In the rest of this section, this directory is referred to as <app_home>.
- In the <app_home> directory, create a plain text file named HelloWorld.jsp, and then copy the following code to this file.
Note: To save time, you can download HelloWorld.war file from this page.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<html> <head> <jsp:useBean id="datetime" class="java.util.Date"/> <title> Basic HelloWorld JSP </title> </head> <body bgcolor="#1276C2"> <h1> <font face="tahoma" color="white"> Hello world from GERONIMO! </font> </h1> <font face="tahoma" color="white">on ${datetime}</font> </body> </html> |
...
No Format | ||
---|---|---|
| ||
deploy --user system --password manager deploy --inPlace <app_home>
|
Note: As a quick alternative, the three files in this Hello World sample have been packaged into HelloWorld.war and attached to this page. To deploy it:
- Download HelloWorld.war to <war_home> on your system.
- Deploy it via:
No Format | ||
---|---|---|
| ||
deploy --user system --password manager deploy <war_home>/HelloWorld.war
|
When the application is successfully deployed, you can see the following message:
...