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 -
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-393.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.