Historique de la page
...
| Astuce |
|---|
Successive versions must be installed at the same location on the filesystem in order to ease upgrades. |
Le fichier build.properties indique à esup-helpdesk comment l'application sera déployée.
Une fois ces propriétés correctement remplis, il faudra configurer l'application (cf 01 Configuration).
| Astuce |
|---|
Lorsque l'on change le mode de déploiement, ilt est conseillé d'effectuer un nettoyage (ant clean) avant de redéployer. |
Deployment properties (build.properties)
Edit At first, edit the configuration file /build.properties to set the properties that tell how the application should be installed.
Once these properties set (see below for details), the behaviour of the application at runtime must be configured (see 01 Configuration).
| Astuce |
|---|
When changing the deployment mode, it is recommended to clean everything (ant clean) before deploying again. |
Common properties (any deployment)
...
This path should be used by the portal administrator to configure the portlet context. Typically (tomcat/conf/server.xml):
| Bloc de code |
|---|
<Host name="localhost"
appBase="webapps" unpackWARs="true"
autoDeploy="true" xmlValidation="false"
xmlNamespaceAware="false">
<Context path="/esup-helpdesk"
docBase="/usr/local/uPortal/webapps/esup-helpdesk"
crossContext="true" reloadable="true">
<Manager pathname="" />
</Context>
</Host>
|
...