Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
JBoss Externaliser un fichier de propriétés
Article publié le 06/03/2007 14:26:49Lorsque nous fournissons notre application sous forme d'un fichier à déployer (par exemple un WAR), nous devons parfois externaliser un fichier de propriétés.
Nous pouvons par exemple utiliser une classe comme celle-ci :
Code Java (22 lignes)
public class JDBCPersistenceHelper { /** * Connection factory accessible to subclasses */ protected JDBCConnectionFactory factory; /** * Constructor reads database properties and gets * connection factory. */ sb.append("/properties/database.properties"); factory = JDBCConnectionFactory.getConnectionFactory(db); } }
et modifier le fichier de lancement de notre serveur JBoss :
Code DOS (116 lignes)
@echo off rem ------------------------------------------------------------------------- rem JBoss Bootstrap Script for Win32 rem ------------------------------------------------------------------------- rem $Id: run.bat 56327 2006-08-28 10:34:13Z dimitris@jboss.org $ set DIRNAME=.\ set PROGNAME=run.bat rem Read all command line arguments REM REM The %ARGS% env variable commented out in favor of using %* to include REM all args in java command line. See bug #840239. [jpl] REM REM set ARGS= REM :loop REM if [%1] == [] goto endloop REM set ARGS=%ARGS% %1 REM shift REM goto loop REM :endloop rem Find run.jar, or we can't continue echo bin directory when running this script. goto END :FOUND_RUN_JAR set JAVA=java goto SKIP_TOOLS :ADD_TOOLS :SKIP_TOOLS rem Include the JDK javac compiler for JSP pages. The default is for a Sun JDK rem compatible distribution to which JAVA_HOME points rem If JBOSS_CLASSPATH is empty, don't include it, as this will rem result in including the local directory, which makes error tracking rem harder. ) rem Setup JBoss specific properties rem set JAVA_OPTS=%JAVA_OPTS% -Dwim.properties=D:\wim\JBOSS_properties\wim.properties rem Add -server to the JVM options, if supported rem JVM memory allocation pool parameters. Modify as appropriate. rem With Sun JVMs reduce the RMI GCs to once per hour set JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 rem JPDA options. Uncomment and modify as appropriate to enable remote debugging. rem set JAVA_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y %JAVA_OPTS% rem Setup the java endorsed dirs echo =============================================================================== echo. echo JBoss Bootstrap Environment echo. echo. echo. echo. echo. echo =============================================================================== echo. :RESTART "%JAVA%" %JAVA_OPTS% "-Djava.endorsed.dirs=%JBOSS_ENDORSED_DIRS%" -classpath "%JBOSS_CLASSPATH%" org.jboss.Main %* :END :END_NO_PAUSE
la ligne qui nous intéresse est la suivante :
Code DOS (1 ligne)
Ce qui nous permet de définir la variable jbossDataHome que nous récupérons de la manière suivante
Code Java (1 ligne)
Nous avons donc le répertoire dans lequel se trouve notre fichier de configuration.
Un article de Steph
Source : 127.0.0.1 ;-)
Commentaires
06/03/2007 17:49:39 : /\/\/\/\/\/\/\/\
Mais qui revoilà ? ton bug avec les backslashes!
Dans ton mail le code est impec (mais pas coloré), et ici c'est le bousouf.
A titre d'exemple,
if exist "%JAVA_HOME%\lib\tools.jar" goto SKIP_TOOLS
devient ceci
Donc j'en conclus que soit tu as restauré un mauvais backup, soit tu as de nouveau un problème avec ton parseur.
PS : la nuit c'est fait pour dormir et pas pour coder :-)
- Fred -
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 13/09/2004, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/ast-rf-393.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.