The Jakarta ProjectStruts Framework

Print-Friendly VersionPrint-Friendly Version
Getting Started
User Guide
Table of Contents
Preface
Introduction
Model Components
View Components
Controller Components
Configuration
Release Notes
Installation
Developer Guides
Bean Tags
HTML Tags
Logic Tags
Nested Tags
Template Tags
Tiles Tags
Utilities
Validator
Quick Links
Welcome
News and Status
Resources
User and Developer Guides *
FAQs and HowTos
5.2 Installation

Contributors:

  • John Rousseau
Installing Struts with your servlet container

SilverStream Application Server 3.7.1 and later

  • Start the SilverStream application server.
  • Create an XML deployment plan for the "struts-example.war" application. Call the file "struts-example-depl-plan.xml". You can use the following contents for the file

----- cut here -----

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE warJarOptions PUBLIC
  "-//SilverStream Software, Inc.//DTD J2EE WAR Deployment Plan//EN"
  "deploy_war.dtd">
<warJarOptions>
<warJar>
<warJarName>struts-example.war</warJarName>
<isEnabled>true</isEnabled>
<urls><el>struts-example</el></urls>
</warJar>
</warJarOptions>

----- cut here -----


Create an XML deployment plan for the "struts-documentation.war" application. Call the file "struts-documentation-depl-plan.xml". You can use the following contents for the file:


----- cut here -----

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE warJarOptions PUBLIC
  "-//SilverStream Software, Inc.//DTD J2EE WAR Deployment Plan//EN"
  "deploy_war.dtd">
<warJarOptions>
<warJar>
<warJarName>struts-documentation.war</warJarName>
<isEnabled>true</isEnabled>
<urls><el>struts-documentation</el></urls>
</warJar>
</warJarOptions>

----- cut here -----


Run the following "SilverCmd DeployWAR" commands to deploy the applications. You can change 'localhost' to whatever server you are deploying to. You can change 'Silvermaster' to whatever database you are deploying to.

  • SilverCmd DeployWar localhost Silvermaster struts-example.war -f struts-example-depl-plan.xml
  • SilverCmd DeployWar localhost Silvermaster struts-documentation.war -f struts-documentation-depl-plan.xml

  • Author: John Rousseau

Back to Installation


Copyright (c) 2000-2003, Apache Software Foundation