Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
JPA et propriétés personnalisées
Article publié le 21/10/2010 18:43:43Dans JPA, nous spécifions les différentes propriétés de persistence dans un fichier persistence.xml qui se trouve dans le répertoire META-INF du projet.
Si nous utilisons ce projet comme dépendence au sein d’un autre projet, il est parfois nécessaire de spécifier d’autres valeurs, comme par exemple la localisation de la base de données.
Exemple de fichier persistence.xml
Code XML (22 lignes)
‹?xml version="1.0" encoding="UTF-8"?› ‹persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0"› ‹persistence-unit name="brolPersistence" transaction-type="RESOURCE_LOCAL"› ‹class›be.gaudry.model.LightObject‹/class› ‹provider›org.hibernate.ejb.HibernatePersistence‹/provider› ‹properties› ‹property name="hibernate.connection.username" value=""/› ‹property name="hibernate.connection.password" value=""/› ‹property name="hibernate.connection.driver_class" value="org.apache.derby.jdbc.EmbeddedDriver"/› ‹property name="hibernate.connection.url" value="jdbc:derby:target/simpleJpaTestDB;create=true"/› ‹property name="hibernate.cache.provider_class" value="org.hibernate.cache.NoCacheProvider"/› ‹property name="hibernate.hbm2ddl.auto" value="create-drop"/› ‹property name="hibernate.search.default.directory_provider" value="org.hibernate.search.store.FSDirectoryProvider"/› ‹property name="hibernate.search.default.indexBase" value="target/lucene/indexes"/› ‹/properties› ‹/persistence-unit› ‹/persistence›
Redéfinir les valeurs en Java
Code Java (4 lignes)
newProperties .put("hibernate.connection.url", "jdbc:derby:target/uneAutreDB;create=true"); Persistence.createEntityManagerFactory(brolPersistence, newProperties);
L’étape suivante est de lire un fichiers .properties si il existe et dans ce cas redéfinir les propriétés par celles du fichier properties (qui est assez facile à modifier pour l’utilisateur, ou via l’application).
Un article de StephModifié 1 fois. (dernière modification le 21/10/2010 18:44:24 par Steph)
Source : indéterminée
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-465.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.